Changeset e47f529 for src/examples/gc_no_raii/premake4.lua
- Timestamp:
- Jan 14, 2016, 3:09:56 PM (8 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:
- a2b2761
- Parents:
- 0ada2f0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/examples/gc_no_raii/premake4.lua
r0ada2f0 re47f529 4 4 5 5 includeDirList = { 6 "../" 6 "./", 7 "../", 7 8 } 8 9 … … 18 19 end 19 20 20 premake.gcc.cc = "../cfa"21 premake.gcc.cxx = "../cfa"22 23 21 -- Build Options: 24 22 buildOptions = {""} 25 23 26 solution " CS488-Projects"24 solution "GC-no-RAII" 27 25 configurations { "Debug", "Release" } 28 26 29 project " GC_TEST"27 project "gc-test" 30 28 kind "ConsoleApp" 31 29 language "C" … … 41 39 42 40 configuration "Debug" 43 defines { "DEBUG" }41 defines { "DEBUG", "bool=_Bool" } 44 42 flags { "Symbols" } 45 43 46 44 configuration "Release" 47 defines { "NDEBUG" }45 defines { "NDEBUG", "bool=_Bool" } 48 46 flags { "Optimize" }
Note: See TracChangeset
for help on using the changeset viewer.