Skip to content

Commit

Permalink
Added the Release flag to the BuildBotScript
Browse files Browse the repository at this point in the history
Depending on how well Conan can deal with the dependencies on the buildbot, this might pass or fail, if one of them has any issues, but I don't expect it to, so, let's see...
  • Loading branch information
amirmasoudabdol committed Apr 2, 2022
1 parent f43069a commit 6dd7e0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Tools/macOS/BuildBotScript.sh
Expand Up @@ -12,7 +12,7 @@
cmake -E remove_directory build-x86_64
cmake -E make_directory build-x86_64

cmake -S . -B build-x86_64 -GNinja -DCMAKE_PREFIX_PATH=/Users/buildbotworker/Qt/6.2.4/macos -DCMAKE_OSX_ARCHITECTURES=x86_64
cmake -S . -B build-x86_64 -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES=x86_64 -DCMAKE_PREFIX_PATH=/Users/buildbotworker/Qt/6.2.4/macos
cmake --build build-x86_64 --target all
cmake --build build-x86_64 --target install
cmake --build build-x86_64 --target dmg
Expand Down
2 changes: 1 addition & 1 deletion Tools/wix/BuildBotScript.cmd
Expand Up @@ -27,7 +27,7 @@ cmake -E remove_directory build
cmake -E make_directory build

echo start build
cmake -S . -B build -GNinja -DCMAKE_PREFIX_PATH=D:/Qt/6.2.4/msvc2019_64
cmake -S . -B build -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=D:/Qt/6.2.4/msvc2019_64

cmake --build build --target all

Expand Down

0 comments on commit 6dd7e0a

Please sign in to comment.