-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake.lua
More file actions
36 lines (27 loc) · 694 Bytes
/
premake.lua
File metadata and controls
36 lines (27 loc) · 694 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
dofile "vendor/premake.lua"
workspace "MeuProjeto"
configurations { "Debug", "Release" }
location "build"
project "glad"
kind "StaticLib"
useGlad()
project "MeuProjeto"
kind "ConsoleApp"
language "C++"
targetdir "build/bin/%{cfg.buildcfg}"
objdir "build/obj/%{cfg.buildcfg}"
files { "src/*.cpp", "include/*.hpp" }
includedirs { "include" }
filter "configurations:Debug"
symbols "On"
optimize "Off"
filter "configurations:Release"
symbols "Off"
optimize "On"
filter {}
useEigen()
useViennaCL()
useImGUI("opengl3", "GLFW")
useGLFW()
useBoost('accumulators')
links { "glad" }