source: src/examples/gc_no_raii/premake4.lua @ e47f529

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@…>, 8 years ago

more conversion and compile seems to work well

  • Property mode set to 100644
File size: 878 bytes
RevLine 
[15db1ab]1#!lua
2
3-- Additional Linux libs: "X11", "Xxf86vm", "Xi", "Xrandr", "stdc++"
4
5includeDirList = {
[e47f529]6        "./",
7        "../",
[15db1ab]8}
9
10libDirectories = {
11
12}
13
14
15if os.get() == "linux" then
16    linkLibs = {
17
18    }
19end
20
21-- Build Options:
22buildOptions = {""}
23
[e47f529]24solution "GC-no-RAII"
[15db1ab]25    configurations { "Debug", "Release" }
26
[e47f529]27    project "gc-test"
[15db1ab]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"
[e47f529]41        defines { "DEBUG", "bool=_Bool" }
[15db1ab]42        flags { "Symbols" }
43
44    configuration "Release"
[e47f529]45        defines { "NDEBUG", "bool=_Bool" }
[15db1ab]46        flags { "Optimize" }
Note: See TracBrowser for help on using the repository browser.