| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- --
- -- Copyright (c) 2012-2020 Daniele Bartolini and individual contributors.
- -- License: https://github.com/dbartolini/crown/blob/master/LICENSE
- --
- function crown_project(_name, _kind, _defines)
- project ("crown" .. _name)
- kind (_kind)
- includedirs {
- CROWN_DIR .. "src",
- CROWN_DIR .. "3rdparty/bgfx/include",
- CROWN_DIR .. "3rdparty/bx/include",
- CROWN_DIR .. "3rdparty/stb",
- CROWN_DIR .. "3rdparty/bullet3/src",
- CROWN_DIR .. "3rdparty/openal/include",
- }
- defines {
- _defines,
- }
- links {
- "bgfx",
- "bimg",
- "bx",
- "bullet",
- "openal",
- }
- if _OPTIONS["with-luajit"] then
- includedirs {
- CROWN_DIR .. "3rdparty/luajit/src",
- }
- configuration { "not vs*" }
- links {
- "luajit"
- }
- configuration { "vs*"}
- links {
- "lua51"
- }
- configuration {}
- end
- configuration { "debug or development" }
- defines {
- "CROWN_DEBUG=1"
- }
- configuration { "development" }
- defines {
- "CROWN_DEVELOPMENT=1"
- }
- configuration { "android*" }
- kind "ConsoleApp"
- targetextension ".so"
- linkoptions {
- "-shared"
- }
- links {
- "gcc",
- "EGL",
- "GLESv2",
- "OpenSLES",
- }
- configuration { "linux-*" }
- links {
- "X11",
- "Xrandr",
- "pthread",
- "GL",
- }
- configuration { "vs* or mingw*" }
- links {
- "dbghelp",
- "xinput",
- "psapi",
- "ws2_32",
- "ole32",
- "gdi32",
- }
- configuration {}
- files {
- CROWN_DIR .. "src/**.h",
- CROWN_DIR .. "src/**.cpp"
- }
- strip()
- configuration {} -- reset configuration
- end
|