diff options
Diffstat (limited to '3rdparty/bx/scripts/genie.lua')
-rw-r--r-- | 3rdparty/bx/scripts/genie.lua | 32 |
1 files changed, 2 insertions, 30 deletions
diff --git a/3rdparty/bx/scripts/genie.lua b/3rdparty/bx/scripts/genie.lua index 9919b8c6181..aab0a8a5620 100644 --- a/3rdparty/bx/scripts/genie.lua +++ b/3rdparty/bx/scripts/genie.lua @@ -28,8 +28,8 @@ solution "bx" language "C++" BX_DIR = path.getabsolute("..") -local BX_BUILD_DIR = path.join(BX_DIR, ".build") -local BX_THIRD_PARTY_DIR = path.join(BX_DIR, "3rdparty") +BX_BUILD_DIR = path.join(BX_DIR, ".build") +BX_THIRD_PARTY_DIR = path.join(BX_DIR, "3rdparty") dofile "toolchain.lua" toolchain(BX_BUILD_DIR, BX_THIRD_PARTY_DIR) @@ -75,20 +75,6 @@ project "bx.test" "-shared", } - configuration { "nacl or nacl-arm" } - targetextension ".nexe" - links { - "ppapi", - "pthread", - } - - configuration { "pnacl" } - targetextension ".pexe" - links { - "ppapi", - "pthread", - } - configuration { "linux-*" } links { "pthread", @@ -134,20 +120,6 @@ project "bx.bench" "-shared", } - configuration { "nacl or nacl-arm" } - targetextension ".nexe" - links { - "ppapi", - "pthread", - } - - configuration { "pnacl" } - targetextension ".pexe" - links { - "ppapi", - "pthread", - } - configuration { "linux-*" } links { "pthread", |