-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpremake5.lua
More file actions
34 lines (26 loc) · 729 Bytes
/
premake5.lua
File metadata and controls
34 lines (26 loc) · 729 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
workspace "string-hash-test"
configurations { "debug", "release" }
platforms { "x64", "x32" }
startproject "string-hash-test"
language "C++"
flags { "NoPCH" }
warnings "Extra"
debugdir "."
filter { "platforms:*32" } architecture "x86"
filter { "platforms:*64" } architecture "x64"
filter { "configurations:debug" }
defines { "DEBUG" }
symbols "On"
targetdir "bin/debug"
filter { "configurations:release" }
defines { "NDEBUG" }
optimize "Full"
targetdir "bin/release"
filter { "system:windows", "action:vs*"}
buildoptions { "/std:c++latest" }
filter {}
project "string-hash-test"
kind "ConsoleApp"
files { "**.hpp", "**.cpp" }
includedirs { "*" }
targetname "string-hash-test"