summaryrefslogtreecommitdiff
path: root/external/semver/appveyor.yml
diff options
context:
space:
mode:
authorIronClawTrem <louie.nutman@gmail.com>2020-02-16 03:40:06 +0000
committerIronClawTrem <louie.nutman@gmail.com>2020-02-16 03:40:06 +0000
commit425decdf7e9284d15aa726e3ae96b9942fb0e3ea (patch)
tree6c0dd7edfefff1be7b9e75fe0b3a0a85fe1595f3 /external/semver/appveyor.yml
parentccb0b2e4d6674a7a00c9bf491f08fc73b6898c54 (diff)
create tremded branch
Diffstat (limited to 'external/semver/appveyor.yml')
-rw-r--r--external/semver/appveyor.yml35
1 files changed, 35 insertions, 0 deletions
diff --git a/external/semver/appveyor.yml b/external/semver/appveyor.yml
new file mode 100644
index 0000000..70afe93
--- /dev/null
+++ b/external/semver/appveyor.yml
@@ -0,0 +1,35 @@
+platform:
+ - x86
+ - x64
+
+configuration:
+ - Debug
+ - Release
+
+os: Visual Studio 2015
+
+clone_folder: c:\projects\semver
+
+install:
+ - git submodule update --init --recursive
+
+build_script:
+ # show settings
+ - cmake -version
+ - echo %platform%
+ - echo %configuration%
+
+ # generate a solution file
+ - cd c:\projects\semver
+ - mkdir build
+ - cd build
+ - if "%platform%" == "x64" set cmake_platform=%platform%
+ - cmake -g "Visual Studio 14 2015" .. -DCMAKE_GENERATOR_PLATFORM=%cmake_platform%
+
+ # build it
+ - if "%platform%" == "x86" set msbuild_platform=Win32
+ - if "%platform%" == "x64" set msbuild_platform=%platform%
+ - msbuild semver.sln /p:Configuration=%configuration% /toolsversion:14.0 /p:PlatformToolset=v140 /p:Platform=%msbuild_platform%
+
+test_script:
+ - if "%configuration%" == "Debug" ctest -VV --schedule-random -C Debug