mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-06-21 20:07:23 +08:00
Add appveyor file.
This commit is contained in:
parent
19c98d50e2
commit
c717f1859f
12
appveyor.yml
Normal file
12
appveyor.yml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
version: 0.9.{build}
|
||||||
|
|
||||||
|
# scripts that runs after repo cloning.
|
||||||
|
install:
|
||||||
|
- vcsetup.bat
|
||||||
|
|
||||||
|
platform: x64
|
||||||
|
configuration: Release
|
||||||
|
|
||||||
|
build:
|
||||||
|
parallel: true
|
||||||
|
project: TinyGLTFSolution.sln
|
29
premake4.lua
Normal file
29
premake4.lua
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
sources = {
|
||||||
|
"test.cc",
|
||||||
|
}
|
||||||
|
|
||||||
|
-- premake4.lua
|
||||||
|
solution "TinyGLTFLoaderSolution"
|
||||||
|
configurations { "Release", "Debug" }
|
||||||
|
|
||||||
|
if (os.is("windows")) then
|
||||||
|
platforms { "x32", "x64" }
|
||||||
|
else
|
||||||
|
platforms { "native", "x32", "x64" }
|
||||||
|
end
|
||||||
|
|
||||||
|
-- A project defines one build target
|
||||||
|
project "tinygltfloader"
|
||||||
|
kind "ConsoleApp"
|
||||||
|
language "C++"
|
||||||
|
files { sources }
|
||||||
|
|
||||||
|
configuration "Debug"
|
||||||
|
defines { "DEBUG" } -- -DDEBUG
|
||||||
|
flags { "Symbols" }
|
||||||
|
targetname "test_tinygltfloader_debug"
|
||||||
|
|
||||||
|
configuration "Release"
|
||||||
|
-- defines { "NDEBUG" } -- -NDEBUG
|
||||||
|
flags { "Symbols", "Optimize" }
|
||||||
|
targetname "test_tinygltfloader"
|
BIN
tools/windows/premake5.exe
Normal file
BIN
tools/windows/premake5.exe
Normal file
Binary file not shown.
1
vcsetup.bat
Normal file
1
vcsetup.bat
Normal file
@ -0,0 +1 @@
|
|||||||
|
.\\tools\\windows\\premake5.exe vs2013
|
Loading…
x
Reference in New Issue
Block a user