FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
objzero/premake5.lua at master · jpcy/objzero · GitHub
jpcy
/
objzero
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
13
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
objzero
/
premake5.lua
Copy path
More file actions
More file actions
Latest commit
History
History
History
50 lines (45 loc) · 988 Bytes
Breadcrumbs
objzero
/
premake5.lua
Copy path
File metadata and controls
50 lines (45 loc) · 988 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
42
43
44
45
46
47
48
49
if
_ACTION
==
nil
then
return
end
solution
"
objzero
"
configurations
{
"
Release
"
,
"
Debug
"
}
if
_OPTIONS
[
"
cc
"
]
~=
nil
then
location
(
path
.
join
(
"
build
"
,
_ACTION
)
..
"
_
"
..
_OPTIONS
[
"
cc
"
])
else
location
(
path
.
join
(
"
build
"
,
_ACTION
))
end
platforms
{
"
x86_64
"
,
"
x86
"
}
startproject
"
example
"
filter
"
platforms:x86
"
architecture
"
x86
"
filter
"
platforms:x86_64
"
architecture
"
x86_64
"
filter
"
configurations:Debug*
"
defines
{
"
_DEBUG
"
}
optimize
"
Debug
"
symbols
"
On
"
filter
"
configurations:Release
"
defines
"
NDEBUG
"
optimize
"
Full
"
project
"
objzero
"
kind
"
StaticLib
"
language
"
C
"
cdialect
"
C99
"
warnings
"
Extra
"
files
{
"
objzero.c
"
,
"
objzero.h
"
}
project
"
example
"
kind
"
ConsoleApp
"
language
"
C
"
cdialect
"
C99
"
warnings
"
Extra
"
files
{
"
example.c
"
}
links
{
"
objzero
"
}
filter
"
system:linux
"
links
{
"
m
"
}
project
"
tests
"
kind
"
ConsoleApp
"
language
"
C
"
cdialect
"
C99
"
files
{
"
tests.c
"
}
filter
"
system:linux
"
links
{
"
m
"
}
Back
|
FazBrowse Home
|
New Git URL