OSDN Git Service
(root)
/
meshio
/
meshio.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix for pmd_import
[meshio/meshio.git]
/
meshio.lua
1
-- A project defines one build target
2
project "meshio"
3
--kind "WindowedApp"
4
--kind "ConsoleApp"
5
--kind "SharedLib"
6
kind "StaticLib"
7
language "C++"
8
files { "include/*.h", "src/**.h", "src/**.cpp" }
9
flags {
10
--"Unicode",
11
"StaticRuntime",
12
}
13
14
includedirs {
15
"include", "boost",
16
}
17
defines {}
18
linkoptions {}
19
libdirs {}
20
links {}
21
22
configuration { "windows", "not gmake" }
23
do
24
-- VC
25
buildoptions {
26
"/wd4996",
27
}
28
end
29
30
configuration { "gmake" }
31
do
32
buildoptions {
33
"-fPIC"
34
}
35
end
36
37
configuration "Debug"
38
do
39
defines { "DEBUG" }
40
flags { "Symbols" }
41
targetdir "debug"
42
end
43
44
configuration "Release"
45
do
46
defines { "NDEBUG" }
47
flags { "Optimize" }
48
targetdir "release"
49
end
50