-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
# Conflicts: # build/setup.bat # conanfile.py # dev/setenv.bat # dev/setenv.sh
- Loading branch information
Showing
8 changed files
with
36 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
@echo on | ||
|
||
mkdir x86\release | ||
cd x86\release | ||
conan install ..\..\.. -s compiler="Visual Studio" -s arch="x86" -s arch_build="x86" -s compiler.version="12" -s build_type="Release" -o xmscore:xms=True | ||
conan install ..\..\.. -s compiler="Visual Studio" -s arch="x86" -s arch_build="x86" -s compiler.version="12" -s build_type="Release" | ||
cmake -DBUILD_TESTING=1 -G "Visual Studio 12 2013" ..\..\.. | ||
cd ..\.. | ||
|
||
mkdir x86\debug | ||
cd x86\debug | ||
conan install ..\..\.. -s compiler="Visual Studio" -s arch="x86" -s arch_build="x86" -s compiler.version="12" -s build_type="Debug" -o xmscore:xms=True | ||
conan install ..\..\.. -s compiler="Visual Studio" -s arch="x86" -s arch_build="x86" -s compiler.version="12" -s build_type="Debug" | ||
cmake -DBUILD_TESTING=1 -G "Visual Studio 12 2013" ..\..\.. | ||
cd ..\.. | ||
|
||
|
||
mkdir x64\release | ||
cd x64\release | ||
conan install ..\..\.. -s compiler="Visual Studio" -s arch="x86_64" -s arch_build="x86_64" -s compiler.version="12" -s build_type="Release" -o xmscore:xms=True | ||
conan install ..\..\.. -s compiler="Visual Studio" -s arch="x86_64" -s arch_build="x86_64" -s compiler.version="12" -s build_type="Release" | ||
cmake -DBUILD_TESTING=1 -G "Visual Studio 12 2013 Win64" ..\..\.. | ||
cd ..\.. | ||
|
||
mkdir x64\debug | ||
cd x64\debug | ||
conan install ..\..\.. -s compiler="Visual Studio" -s arch="x86_64" -s arch_build="x86_64" -s compiler.version="12" -s build_type="Debug" -o xmscore:xms=True | ||
conan install ..\..\.. -s compiler="Visual Studio" -s arch="x86_64" -s arch_build="x86_64" -s compiler.version="12" -s build_type="Debug" | ||
cmake -DBUILD_TESTING=1 -G "Visual Studio 12 2013 Win64" ..\..\.. | ||
cd ..\.. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
@echo off | ||
set XMS_VERSION=1.0.8 | ||
set XMS_RUN_TESTS=0 | ||
set XMS_RUN_TESTS=1 | ||
set CONAN_VISUAL_VERSIONS=12 | ||
set CONAN_REFERENCE=xmscore/%XMS_VERSION% | ||
set CONAN_USERNAME=aquaveo | ||
set CONAN_CHANNEL=stable | ||
set CONAN_GCC_VERSIONS=5 | ||
REM export CONAN_UPLOAD=1 | ||
REM export CONAN_UPLOAD="<conanserver>" | ||
set | findstr "XMS" | ||
set | findstr "CONAN" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
#!/usr/bin/env bash | ||
export XMS_VERSION="0.0.6" | ||
export XMS_VERSION="1.0.7" | ||
export XMS_RUN_TESTS="1" | ||
export CONAN_REFERENCE="xmsinterp/${XMS_VERSION}" | ||
export CONAN_REFERENCE="xmscore/${XMS_VERSION}" | ||
export CONAN_USERNAME="aquaveo" | ||
export CONAN_CHANNEL="stable" | ||
export CONAN_GCC_VERSIONS="5" | ||
export CONAN_ARCHS="x86_64" | ||
export CONAN_BUILD_TYPES="Release" | ||
# export CONAN_UPLOAD="1" | ||
# export CONAN_UPLOAD="<conanserver>" | ||
# export CONAN_DOCKER_IMAGE="lasote/conangcc${CONAN_GCC_VERSIONS}" | ||
printenv | grep XMS | ||
printenv | grep CONAN |