Skip to content

Commit

Permalink
Enables building with Crashpad on CIs.
Browse files Browse the repository at this point in the history
  • Loading branch information
OmniBlade committed Aug 16, 2020
1 parent 6e0d583 commit 6ed77e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -14,6 +14,6 @@ before_install:
before_script:
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DSTANDALONE=TRUE ..
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DSTANDALONE=TRUE -DUSE_CRASHPAD=ON ..

script: make -j2
6 changes: 3 additions & 3 deletions appveyor.yml
Expand Up @@ -60,11 +60,11 @@ before_build:
- cmd: cd build
- cmd: if "%platform%"=="Win32" set CMAKE_GENERATOR_NAME=%GENERATOR%
- cmd: if "%platform%"=="x64" set CMAKE_GENERATOR_NAME=%GENERATOR% Win64
- cmd: cmake -G "%CMAKE_GENERATOR_NAME%" %CMAKE_OPTIONS% -DCMAKE_BUILD_TYPE=%configuration% ..
- cmd: cmake -G "%CMAKE_GENERATOR_NAME%" %CMAKE_OPTIONS% -DUSE_CRASHPAD=ON -DCMAKE_BUILD_TYPE=%configuration% ..

after_build:
- cmd: if "%CMAKE_OPTIONS%"=="" 7z a thyme.zip .\%configuration%\thyme.dll .\%configuration%\launchthyme.exe -tzip
- cmd: if "%CMAKE_OPTIONS%"=="-DSTANDALONE=ON" 7z a thyme.zip .\%configuration%\thyme.exe -tzip
- cmd: if "%CMAKE_OPTIONS%"=="" 7z a thyme.zip .\%configuration%\thyme.dll .\%configuration%\launchthyme.exe .\%configuration%\thymecrashhandler.exe -tzip
- cmd: if "%CMAKE_OPTIONS%"=="-DSTANDALONE=ON" 7z a thyme.zip .\%configuration%\thyme.exe .\%configuration%\thymecrashhandler.exe -tzip

artifacts:
- path: build/thyme.zip
Expand Down

0 comments on commit 6ed77e7

Please sign in to comment.