From 19c2576836e2b28a9a14c6b3509d3865503275cd Mon Sep 17 00:00:00 2001 From: andreasGBL <29144928+andreasGBL@users.noreply.github.com> Date: Mon, 27 Sep 2021 16:29:44 +0200 Subject: [PATCH] Build script that builds multiple versions of the executable --- build-all.bat | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 build-all.bat diff --git a/build-all.bat b/build-all.bat new file mode 100644 index 0000000..d924bd0 --- /dev/null +++ b/build-all.bat @@ -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 \ No newline at end of file