mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-02-17 20:31:57 -05:00
commit
3e0bef868c
3 changed files with 38 additions and 2 deletions
30
examples/runtime/tvos-info.plist
Normal file
30
examples/runtime/tvos-info.plist
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>en</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>$(EXECUTABLE_NAME)</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>$(PRODUCT_NAME)</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>APPL</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>1.0</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>1</string>
|
||||||
|
<key>LSRequiresIPhoneOS</key>
|
||||||
|
<true/>
|
||||||
|
<key>UIRequiredDeviceCapabilities</key>
|
||||||
|
<array>
|
||||||
|
<string>arm64</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
|
@ -61,7 +61,7 @@ project ("example-common")
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
configuration { "osx or ios*" }
|
configuration { "osx or ios* or tvos*" }
|
||||||
files {
|
files {
|
||||||
path.join(BGFX_DIR, "examples/common/**.mm"),
|
path.join(BGFX_DIR, "examples/common/**.mm"),
|
||||||
}
|
}
|
||||||
|
|
|
@ -312,7 +312,7 @@ function exampleProject(_name)
|
||||||
"-framework OpenGL",
|
"-framework OpenGL",
|
||||||
}
|
}
|
||||||
|
|
||||||
configuration { "ios*" }
|
configuration { "ios* or tvos*" }
|
||||||
kind "ConsoleApp"
|
kind "ConsoleApp"
|
||||||
linkoptions {
|
linkoptions {
|
||||||
"-framework CoreFoundation",
|
"-framework CoreFoundation",
|
||||||
|
@ -329,6 +329,12 @@ function exampleProject(_name)
|
||||||
path.join(BGFX_DIR, "examples/runtime/iOS-Info.plist"),
|
path.join(BGFX_DIR, "examples/runtime/iOS-Info.plist"),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
configuration { "xcode4", "tvos" }
|
||||||
|
kind "WindowedApp"
|
||||||
|
files {
|
||||||
|
path.join(BGFX_DIR, "examples/runtime/tvOS-Info.plist"),
|
||||||
|
}
|
||||||
|
|
||||||
configuration { "qnx*" }
|
configuration { "qnx*" }
|
||||||
targetextension ""
|
targetextension ""
|
||||||
links {
|
links {
|
||||||
|
|
Loading…
Reference in a new issue