-
Notifications
You must be signed in to change notification settings - Fork 0
/
premake5.lua
41 lines (31 loc) · 882 Bytes
/
premake5.lua
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
workspace "ROBLOXLink"
configurations { "Debug", "Release" }
filter "action:vs*"
buildoptions { "/Zc:__cplusplus" }
platforms { "Win64" }
filter "action:gmake*"
platforms { "Linux64", "Mac64" }
filter "Debug"
defines { "DEBUG" }
symbols "On"
filter "Release"
defines { "NDEBUG" }
optimize "Speed"
filter "platforms:*64"
architecture "x86_64"
filter "platforms:Win64"
system "windows"
filter "platforms:Linux64"
system "linux"
defines { "OS_UNIX" }
filter "platforms:Mac64"
system "macosx"
defines { "OS_UNIX" }
project "ROBLOXLink"
kind "SharedLib"
language "C++"
cppdialect "C++17"
targetdir "bin/%{cfg.buildcfg}"
includedirs { "libraries" }
defines { "_CRT_SECURE_NO_WARNINGS", "_SCL_SECURE_NO_WARNINGS", "ASIO_STANDALONE" }
files { "src/**.hpp", "src/**.h", "src/**.cpp" }