mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-15 18:45:51 +00:00
Add hecl-gui submodule
This commit is contained in:
parent
ee5ca06830
commit
e89408dd51
5
.gitmodules
vendored
5
.gitmodules
vendored
@ -19,3 +19,8 @@
|
|||||||
[submodule "assetnameparser/tinyxml2"]
|
[submodule "assetnameparser/tinyxml2"]
|
||||||
path = assetnameparser/tinyxml2
|
path = assetnameparser/tinyxml2
|
||||||
url = ../tinyxml2.git
|
url = ../tinyxml2.git
|
||||||
|
[submodule "hecl-gui"]
|
||||||
|
|
||||||
|
path = hecl-gui
|
||||||
|
|
||||||
|
url = ../hecl-gui
|
||||||
|
@ -139,6 +139,20 @@ add_subdirectory(mpcksum)
|
|||||||
add_subdirectory(gbalink)
|
add_subdirectory(gbalink)
|
||||||
add_subdirectory(visigen)
|
add_subdirectory(visigen)
|
||||||
|
|
||||||
|
# Test for supported Qt version
|
||||||
|
find_program(QMAKE_EXECUTABLE NAMES qmake HINTS ${QTDIR} ENV QTDIR PATH_SUFFIXES bin)
|
||||||
|
if (QMAKE_EXECUTABLE)
|
||||||
|
set(QT_MINIMUM_VERSION 5.3.0)
|
||||||
|
execute_process(COMMAND ${QMAKE_EXECUTABLE} -query QT_VERSION OUTPUT_VARIABLE QT_VERSION)
|
||||||
|
if(QT_VERSION LESS QT_MINIMUM_VERSION)
|
||||||
|
message("Qt version ${QT_VERSION} does not meet the minimum ${QT_MINIMUM_VERSION} requirement, hecl-gui will not be built")
|
||||||
|
else()
|
||||||
|
message("hecl-gui will be built with Qt verion ${QT_VERSION}")
|
||||||
|
add_subdirectory(hecl-gui)
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
message("Qt not found, hecl-gui will not be built")
|
||||||
|
endif()
|
||||||
unset(GIT_EXECUTABLE CACHE)
|
unset(GIT_EXECUTABLE CACHE)
|
||||||
find_package(Git)
|
find_package(Git)
|
||||||
if(GIT_FOUND)
|
if(GIT_FOUND)
|
||||||
|
1
hecl-gui
Submodule
1
hecl-gui
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 2113bed95f80fea497e56deec12ea5364b858a3f
|
Loading…
x
Reference in New Issue
Block a user