-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from ModOrganizer2/update-cmake-common-qt6
Update following cmake_common changes.
- Loading branch information
Showing
5 changed files
with
12 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
cmake_minimum_required(VERSION 3.16) | ||
|
||
project(nxmhandler) | ||
set(project_type exe) | ||
set(enable_warnings OFF) | ||
|
||
if(DEFINED DEPENDENCIES_DIR) | ||
include(${DEPENDENCIES_DIR}/modorganizer_super/cmake_common/project.cmake) | ||
include(${DEPENDENCIES_DIR}/modorganizer_super/cmake_common/mo2.cmake) | ||
else() | ||
include(../cmake_common/project.cmake) | ||
include(${CMAKE_CURRENT_LIST_DIR}/../cmake_common/mo2.cmake) | ||
endif() | ||
|
||
project(nxmhandler) | ||
add_subdirectory(src) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
cmake_minimum_required(VERSION 3.16) | ||
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) | ||
|
||
add_executable(nxmhandler) | ||
mo2_configure_executable(nxmhandler | ||
WARNINGS OFF | ||
PRIVATE_DEPENDS uibase) | ||
mo2_install_target(nxmhandler) | ||
|
||
mo2_deploy_qt(BINARIES nxmhandler.exe NOPLUGINS) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.