ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change
on this file since e47f529 was
e47f529,
checked in by Thierry Delisle <tdelisle@…>, 9 years ago
|
more conversion and compile seems to work well
|
-
Property mode set to
100644
|
File size:
878 bytes
|
Line | |
---|
1 | #!lua |
---|
2 | |
---|
3 | -- Additional Linux libs: "X11", "Xxf86vm", "Xi", "Xrandr", "stdc++" |
---|
4 | |
---|
5 | includeDirList = { |
---|
6 | "./", |
---|
7 | "../", |
---|
8 | } |
---|
9 | |
---|
10 | libDirectories = { |
---|
11 | |
---|
12 | } |
---|
13 | |
---|
14 | |
---|
15 | if os.get() == "linux" then |
---|
16 | linkLibs = { |
---|
17 | |
---|
18 | } |
---|
19 | end |
---|
20 | |
---|
21 | -- Build Options: |
---|
22 | buildOptions = {""} |
---|
23 | |
---|
24 | solution "GC-no-RAII" |
---|
25 | configurations { "Debug", "Release" } |
---|
26 | |
---|
27 | project "gc-test" |
---|
28 | kind "ConsoleApp" |
---|
29 | language "C" |
---|
30 | location "build" |
---|
31 | objdir "build" |
---|
32 | targetdir "." |
---|
33 | buildoptions (buildOptions) |
---|
34 | libdirs (libDirectories) |
---|
35 | links (linkLibs) |
---|
36 | linkoptions (linkOptionList) |
---|
37 | includedirs (includeDirList) |
---|
38 | files { "../fstream.c", "../iostream.c", "../iterator.c", "*.c" } |
---|
39 | |
---|
40 | configuration "Debug" |
---|
41 | defines { "DEBUG", "bool=_Bool" } |
---|
42 | flags { "Symbols" } |
---|
43 | |
---|
44 | configuration "Release" |
---|
45 | defines { "NDEBUG", "bool=_Bool" } |
---|
46 | flags { "Optimize" } |
---|
Note: See
TracBrowser
for help on using the repository browser.