1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

make gg work on Windows; prebuild glad and cJSON; new ft module

This commit is contained in:
Alexander Medvednikov
2019-07-10 13:27:35 +02:00
parent 06e7354d18
commit f834644db4
17 changed files with 6593 additions and 340 deletions

View File

@ -19,12 +19,11 @@ import const (
GL_ARRAY_BUFFER
)
// TODO: windows support
#flag linux -I @VROOT/thirdparty/glad
#flag darwin -I @VROOT/thirdparty/glad
#flag -I @VROOT/thirdparty/glad
#include "glad.h"
#include "glad.c"
#flag @VROOT/thirdparty/glad/glad.o
//#include "glad.c"
pub fn init_glad() {
ok := C.gladLoadGL()