-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
29 lines (22 loc) · 724 Bytes
/
premake5.lua
File metadata and controls
29 lines (22 loc) · 724 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
include "dependencies/conandeps.premake5.lua"
workspace "ConanTutorial"
configurations { "Debug", "Release" }
architecture "x64"
project "HelloWorld"
kind "ConsoleApp"
language "C++"
cppdialect "C++20"
targetdir "build/%{cfg.buildcfg}/bin"
objdir "build/%{cfg.buildcfg}/obj"
location "./src"
files { "%{prj.location}/**.h", "%{prj.location}/**.cpp" }
filter "configurations:Debug"
defines { "DEBUG" }
symbols "On"
filter {}
filter "configurations:Release"
defines { "NDEBUG" }
optimize "On"
filter {}
conan_setup()
linkoptions { "/IGNORE:4099" }