mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-08 19:57:46 +00:00
30 lines
590 B
YAML
30 lines
590 B
YAML
os:
|
|
- Visual Studio 2015
|
|
|
|
configuration:
|
|
- Debug
|
|
|
|
platform:
|
|
- Win32
|
|
|
|
environment:
|
|
MSVC_DEFAULT_OPTIONS: ON
|
|
BOOST_ROOT_DIR: "C:\\Libraries\\boost_1_63_0"
|
|
BOOST_LIB_DIR: "C:\\Libraries\\boost_1_63_0\\lib32-msvc-14.0"
|
|
MYSQL_PWD: "Password12!"
|
|
|
|
services:
|
|
- mysql
|
|
|
|
before_build:
|
|
- set PATH="C:\\Program Files\\MySQL\\MySQL Server 5.7\\bin";%PATH%
|
|
- cd c:\projects\sapphire
|
|
- git submodule update --init
|
|
- mkdir build
|
|
- cd build
|
|
- cmake .. -G "Visual Studio 14 2015"
|
|
- cmake --build . --target ALL_BUILD --config Debug
|
|
|
|
build_script:
|
|
- cd ..
|
|
- sh sql_import.sh
|