Clean and remove build directory

Move scripts into scripts folder
Move doc-stuff into docs
Update CI & CMake scripts

See #89
This commit is contained in:
Alexander Grund 2020-07-16 12:52:45 +02:00
parent 3d44f9bfda
commit 32d16f773b
No known key found for this signature in database
GPG key ID: E92C451FC21EF13F
13 changed files with 9 additions and 151 deletions

View file

@ -53,7 +53,7 @@ build_script:
- cd %APPVEYOR_BUILD_FOLDER%
- if NOT "%CXX_STANDARD%"=="" set CXX_FLAGS=cxxflags=/std:c++%CXX_STANDARD%
- set BUILD_ARGS=address-model=32,64 variant=debug,release
- call build\build.bat --toolset=%TOOLSET% %CXX_FLAGS% -j3
- call scripts\build.bat --toolset=%TOOLSET% %CXX_FLAGS% -j3
for:
- matrix:
@ -62,8 +62,7 @@ for:
build_script:
- set BOOST_ROOT=C:\Libraries\boost_%BOOST%
- cd %APPVEYOR_BUILD_FOLDER%
- mkdir __build
- cd __build
- mkdir build && cd build
- cmake .. -DCMAKE_BUILD_TYPE=Debug
- cmake --build . --config Debug
- ctest --output-on-failure --build-config Debug