mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-16 06:30:05 +00:00
dc491936a2
fix some relative path issues for loading assets
23 lines
235 B
Lua
23 lines
235 B
Lua
|
|
project "AppHelloWorld"
|
|
|
|
if _OPTIONS["ios"] then
|
|
kind "WindowedApp"
|
|
else
|
|
kind "ConsoleApp"
|
|
end
|
|
|
|
includedirs {"../../src"}
|
|
|
|
links {
|
|
"BulletDynamics","BulletCollision", "LinearMath"
|
|
}
|
|
|
|
language "C++"
|
|
|
|
files {
|
|
"**.cpp",
|
|
"**.h",
|
|
}
|
|
|