Skip to content

Commit

Permalink
Build script that builds multiple versions of the executable
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasGBL committed Sep 27, 2021
1 parent b6f66e0 commit 19c2576
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions build-all.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
mkdir build
cd build

cmake -DPROJECT_NAME="VideoLow_Nvidia" -DHARDWARE_ACCELERATION_DEFAULT=1 -DWITH_CONSOLE=0 ..
cmake --build . --config Release

cmake -DPROJECT_NAME="VideoLow_AMD" -DHARDWARE_ACCELERATION_DEFAULT=2 -DWITH_CONSOLE=0 ..
cmake --build . --config Release

cmake -DPROJECT_NAME="VideoLow_DEBUG" -DHARDWARE_ACCELERATION_DEFAULT=0 -DWITH_CONSOLE=1 ..
cmake --build . --config Release

cmake -DPROJECT_NAME="VideoLow" -DHARDWARE_ACCELERATION_DEFAULT=0 -DWITH_CONSOLE=0 ..
cmake --build . --config Release

Pause

0 comments on commit 19c2576

Please sign in to comment.