Ignore:
Timestamp:
Jan 14, 2016, 3:09:56 PM (9 years ago)
Author:
Thierry Delisle <tdelisle@…>
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
Message:

more conversion and compile seems to work well

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/examples/gc_no_raii/premake4.lua

    r0ada2f0 re47f529  
    44
    55includeDirList = {
    6         "../"
     6        "./",
     7        "../",
    78}
    89
     
    1819end
    1920
    20 premake.gcc.cc = "../cfa"
    21 premake.gcc.cxx = "../cfa"
    22 
    2321-- Build Options:
    2422buildOptions = {""}
    2523
    26 solution "CS488-Projects"
     24solution "GC-no-RAII"
    2725    configurations { "Debug", "Release" }
    2826
    29     project "GC_TEST"
     27    project "gc-test"
    3028        kind "ConsoleApp"
    3129        language "C"
     
    4139
    4240    configuration "Debug"
    43         defines { "DEBUG" }
     41        defines { "DEBUG", "bool=_Bool" }
    4442        flags { "Symbols" }
    4543
    4644    configuration "Release"
    47         defines { "NDEBUG" }
     45        defines { "NDEBUG", "bool=_Bool" }
    4846        flags { "Optimize" }
Note: See TracChangeset for help on using the changeset viewer.