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 pmd_export.
[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
buildoptions {
14
"/wd4996",
15
}
16
includedirs {
17
"include", "boost",
18
}
19
defines {}
20
linkoptions {}
21
libdirs {}
22
links {}
23
24
configuration "Debug"
25
do
26
defines { "DEBUG" }
27
flags { "Symbols" }
28
targetdir "debug"
29
end
30
31
configuration "Release"
32
do
33
defines { "NDEBUG" }
34
flags { "Optimize" }
35
targetdir "release"
36
end
37