-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
32 lines (25 loc) · 884 Bytes
/
premake5.lua
File metadata and controls
32 lines (25 loc) · 884 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
workspace "cdbgen"
configurations { "Debug", "Release" }
location "build"
filter "system:Windows"
system "windows"
defines { "WIN32" }
project "cdbgen"
location "build/cdbgen"
kind "ConsoleApp"
language "C++"
architecture "x86_64"
targetdir "bin/%{cfg.buildcfg}"
includedirs { ".", "../include", "c:/boost_1_67_0/include", "c:/svn/ext/gdal213/vc14/x64/include" }
files { "premake5.lua", "src/**.h", "src/**.cpp" }
libdirs { "c:/boost_1_67_0/lib/vc141", "c:/svn/ext/gdal213/vc14/x64/lib" }
links { "gdal_i" }
defines { }
filter "configurations:Debug"
defines { "DEBUG" }
links { "libboost_filesystem-vc141-mt-gd-x64-1_67" }
symbols "On"
filter "configurations:Release"
defines { "NDEBUG" }
links { "libboost_filesystem-vc141-mt-x64-1_67" }
optimize "On"