Appveyor CMAKE fix

This commit is contained in:
Silarn
2020-05-01 04:59:12 -05:00
parent fc729d37f7
commit dfec4dd938
2 changed files with 10 additions and 3 deletions
+5 -1
View File
@@ -4,5 +4,9 @@ project(nxmhandler)
set(project_type exe)
set(enable_warnings OFF)
include(../cmake_common/project.cmake)
if(DEFINED DEPENDENCIES_DIR)
include(${DEPENDENCIES_DIR}/modorganizer_super/cmake_common/project.cmake)
else()
include(../cmake_common/project.cmake)
endif()
add_subdirectory(src)
+5 -2
View File
@@ -1,4 +1,7 @@
cmake_minimum_required(VERSION 3.16)
include(../../cmake_common/src.cmake)
if(DEFINED DEPENDENCIES_DIR)
include(${DEPENDENCIES_DIR}/modorganizer_super/cmake_common/src.cmake)
else()
include(../../cmake_common/src.cmake)
endif()
deploy_qt(BINARIES nxmhandler.exe NOPLUGINS)