Changeset d67a9a1 for src/examples/gc_no_raii/premake4.lua
- Timestamp:
- Jan 20, 2016, 1:53:17 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 00ede9e
- Parents:
- 08a40fd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/examples/gc_no_raii/premake4.lua
r08a40fd rd67a9a1 34 34 targetdir "." 35 35 buildoptions (buildOptions) 36 defines { "bool=_Bool", 37 "\"true=((_Bool)(const signed int)1)\"", 38 "\"false=((_Bool)(const signed int)0)\"", 39 "_GNU_SOURCE"} 36 40 libdirs (libDirectories) 37 41 links (linkLibs) … … 41 45 42 46 configuration "debug" 43 defines { "DEBUG" , "bool=_Bool"}47 defines { "DEBUG" } 44 48 flags { "Symbols" } 45 49 46 50 configuration "release" 47 defines { "NDEBUG" , "bool=_Bool"}51 defines { "NDEBUG" } 48 52 flags { "Optimize" } 49 53 … … 51 55 buildoptions ({"-E"}) 52 56 linkoptions ({"-E"}) 53 defines { "DEBUG" , "bool=_Bool"}57 defines { "DEBUG" } 54 58 flags { "Symbols" } 55 59 … … 57 61 buildoptions ({"-E"}) 58 62 linkoptions ({"-E"}) 59 defines { "DEBUG" , "bool=_Bool"}63 defines { "DEBUG" } 60 64 flags { "Symbols" } 61 65 … … 63 67 linkoptions ({"-E"}) 64 68 files { "build/cproc-debug/*.o" } 65 defines { "DEBUG" , "bool=_Bool"}69 defines { "DEBUG" } 66 70 flags { "Symbols" } 67 71 … … 69 73 linkoptions ({"-E"}) 70 74 files { "build/cproc-debug/*.o" } 71 defines { "DEBUG" , "bool=_Bool"}75 defines { "DEBUG" } 72 76 flags { "Symbols" }
Note: See TracChangeset
for help on using the changeset viewer.