-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpremake5.lua
More file actions
31 lines (25 loc) · 878 Bytes
/
premake5.lua
File metadata and controls
31 lines (25 loc) · 878 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
workspace "timecycle24"
configurations { "Release", "Debug" }
location "build"
files { "src/*.*" }
includedirs { "src" }
includedirs { os.getenv("RWSDK36") }
project "timecycle24"
kind "SharedLib"
language "C++"
targetdir "bin/%{cfg.buildcfg}"
targetextension ".asi"
characterset ("MBCS")
filter "configurations:Debug"
defines { "DEBUG" }
symbols "On"
debugdir "C:/Users/aap/games/gtasa"
debugcommand "C:/Users/aap/games/gtasa/gta_sa.exe"
postbuildcommands "copy /y \"$(TargetPath)\" \"C:\\Users\\aap\\games\\gtasa\\scripts\\timecycle24.asi\""
filter "configurations:Release"
defines { "NDEBUG" }
optimize "On"
flags { "StaticRuntime" }
debugdir "C:/Users/aap/games/gtasa"
debugcommand "C:/Users/aap/games/gtasa/gta_sa.exe"
postbuildcommands "copy /y \"$(TargetPath)\" \"C:\\Users\\aap\\games\\gtasa\\scripts\\timecycle24.asi\""