mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 01:30:05 +00:00
Flexibility updates for Windows setup
This commit is contained in:
parent
201fa8d777
commit
fe76cd67d0
3 changed files with 23 additions and 9 deletions
|
|
@ -1,5 +1,12 @@
|
|||
call tools\setup-common.bat
|
||||
mkdir build-debug
|
||||
cd build-debug
|
||||
cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CONFIGURATION_TYPES=Debug -DCMAKE_PREFIX_PATH=C:/Qt/6.6.1/msvc2019_64 ..
|
||||
|
||||
set build_dir=build-debug
|
||||
set build_type=Debug
|
||||
set qt_version=6.6.1
|
||||
|
||||
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%/msvc2019_64
|
||||
pause
|
||||
|
|
|
|||
|
|
@ -1,5 +1,12 @@
|
|||
call tools\setup-common.bat
|
||||
mkdir build-release
|
||||
cd build-release
|
||||
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CONFIGURATION_TYPES=Release -DCMAKE_PREFIX_PATH=C:/Qt/6.6.1/msvc2019_64 ..
|
||||
|
||||
set build_dir=build-release
|
||||
set build_type=Release
|
||||
set qt_version=6.6.1
|
||||
|
||||
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%/msvc2019_64
|
||||
pause
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
pip install "conan<2.0"
|
||||
pip install geopandas
|
||||
pip install GitPython
|
||||
pip install --upgrade "conan<2.0"
|
||||
pip install --upgrade geopandas
|
||||
pip install --upgrade GitPython
|
||||
conan profile new default --detect
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue