-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSolutionGenerator.lua
More file actions
44 lines (35 loc) · 973 Bytes
/
SolutionGenerator.lua
File metadata and controls
44 lines (35 loc) · 973 Bytes
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
workspace "NRaster"
configurations { "Debug", "Release" }
platforms { "x64" }
systemversion "10.0.16299.0"
filter "configurations:Debug"
defines { "DEBUG" }
symbols "On"
inlining("auto")
filter "configurations:Release"
defines { "NDEBUG" }
optimize "On"
inlining("auto")
filter "platforms:x64"
architecture "x64"
project "NRaster"
kind "ConsoleApp"
language "C++"
--vectorextensions "avx"
--vectorextensions "SSE4.1"
location "Temp/VSFiles"
targetdir "Binaries/%{cfg.platform}/%{cfg.buildcfg}"
files { "Source/**.cpp","Source/**.h" }
files {"Dependencies/tinythreads/source/*.cpp"}
includedirs
{
"Source/",
"Dependencies/SDL2-2.0.9/include/",
"Dependencies/hlslpp/include/",
"Dependencies/glm/glm/",
"Dependencies/tinyobj/",
"Dependencies/tinythreads/source"
}
defines {"NOMINMAX"}
libdirs {"Dependencies/SDL2-2.0.9/lib/x64/"}
links {"SDL2","SDL2main"}