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

main.v: fix broken thirdparty dependencies

This commit is contained in:
Alexander Medvednikov
2019-06-25 14:24:12 +02:00
parent ced6f7ffba
commit 9c1fc6717f
5 changed files with 12 additions and 7 deletions

View File

@ -5,8 +5,9 @@
module json
// TODO: windows support
#flag linux -I$HOME/code/v/thirdparty/cJSON
#flag darwin -I$HOME/code/v/thirdparty/cJSON
#flag linux -I @VROOT/thirdparty/cJSON
#flag darwin -I @VROOT/thirdparty/cJSON
// #include "cJSON.c"
#include "cJSON.h"