summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-01-24 01:05:12 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2021-01-24 05:25:37 +0100
commit219ed587caa45d4b081c532d90039cf5a830dd8d (patch)
treee144193c1b0a10edaf02da503a97c7942248dfca
parentMerge pull request #403 from LorenDB/fixEmojiCategories (diff)
downloadnheko-219ed587caa45d4b081c532d90039cf5a830dd8d.tar.xz
Add python 3 to path in appveyor
-rw-r--r--CMakeLists.txt6
-rw-r--r--appveyor.yml3
2 files changed, 4 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt

index 0e707977..d93fb184 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -72,13 +72,13 @@ if(${CMAKE_VERSION} VERSION_LESS "3.14.0") endmacro() endif() +# Include Qt basic functions +include(QtCommon) + project(nheko LANGUAGES CXX C) include(GNUInstallDirs) -# Include Qt basic functions -include(QtCommon) - set(CPACK_PACKAGE_VERSION_MAJOR "0") set(CPACK_PACKAGE_VERSION_MINOR "8") set(CPACK_PACKAGE_VERSION_PATCH "0") diff --git a/appveyor.yml b/appveyor.yml
index 3b1b52fc..87d80d2a 100644 --- a/appveyor.yml +++ b/appveyor.yml
@@ -23,7 +23,7 @@ build: install: - set QT_DIR=C:\Qt\5.15\msvc2019_64 - - set PATH=C:\Strawberry\perl\bin;%PATH%;%QT_DIR%\bin + - set PATH=C:\Strawberry\perl\bin;C:\Python39-x64;%PATH%;%QT_DIR%\bin - call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 build_script: @@ -46,7 +46,6 @@ build_script: - echo %DATE% # Build nheko - #- cmake -G "Visual Studio 15 2017 Win64" -H. -Bbuild - cmake -G "Visual Studio 16 2019" -A x64 -H. -Bbuild -DHUNTER_ROOT="C:\hunter" -DHUNTER_ENABLED=ON -DBUILD_SHARED_LIBS=OFF