mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 01:40:05 +00:00
14 lines
399 B
Batchfile
14 lines
399 B
Batchfile
call tools\setup-common.bat
|
|
|
|
set build_dir=build-release
|
|
set build_type=Release
|
|
set qt_version=6.8.0
|
|
set qt_arch=msvc2022_64
|
|
|
|
mkdir %build_dir%
|
|
cmake -B %build_dir% -S . ^
|
|
-DCMAKE_BUILD_TYPE=%build_type% ^
|
|
-DCMAKE_CONFIGURATION_TYPES=%build_type% ^
|
|
-DCMAKE_PREFIX_PATH=C:/Qt/%qt_version%/%qt_arch% ^
|
|
-DCMAKE_PROJECT_TOP_LEVEL_INCLUDES=external/cmake-conan/conan_provider.cmake
|
|
pause
|