-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpremake4.lua
44 lines (41 loc) · 1.1 KB
/
premake4.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
solution "Noise Solution"
configurations {"Release"}
project "Noise"
kind "StaticLib"
language "C++"
files {"src/*.cpp"}
includedirs {"include"}
buildoptions { "-std=c++11" }
location "build"
targetdir "lib"
targetname "noisy"
project "Example"
kind "ConsoleApp"
language "C++"
files {"examples/example.cpp"}
includedirs {"include"}
links {"noisy", "png"}
libdirs "lib"
location "build"
targetname "example"
targetdir "bin"
project "SelectExample"
kind "ConsoleApp"
language "C++"
files {"examples/select.cpp"}
includedirs {"include"}
links {"noisy", "png"}
libdirs "lib"
location "build"
targetname "select"
targetdir "bin"
project "CircleExample"
kind "ConsoleApp"
language "C++"
files {"examples/circle.cpp"}
includedirs {"include"}
links {"noisy", "png"}
libdirs "lib"
location "build"
targetname "circle"
targetdir "bin"