1
0
Fork 0

Fix CMake dependencies for translations

When only building the fgfs target (which IDEs tend to do), we didn’t
update the translations. Add an explicit dependency to remedy this.
This commit is contained in:
James Turner 2018-08-28 12:04:56 +01:00
parent eaa2ed5cbb
commit f4b98cf204
2 changed files with 5 additions and 0 deletions

View file

@ -125,6 +125,7 @@ if (HAVE_QT)
set_property(TARGET fglauncher PROPERTY AUTOMOC ON)
target_link_libraries(fglauncher Qt5::Core Qt5::Widgets Qt5::Network Qt5::Qml Qt5::Quick Qt5::Svg SimGearCore)
target_include_directories(fglauncher PRIVATE ${PROJECT_BINARY_DIR}/src/GUI)
add_dependencies(fglauncher fgfs_qm_files)
add_library(fgqmlui QQuickDrawable.cxx
QQuickDrawable.hxx
@ -161,6 +162,8 @@ if (HAVE_QT)
set_property(TARGET fgqmlui PROPERTY AUTOMOC ON)
target_link_libraries(fgqmlui Qt5::Quick Qt5::Network Qt5::Qml SimGearCore)
target_include_directories(fgqmlui PRIVATE ${PROJECT_BINARY_DIR}/src/GUI)
add_dependencies(fgqmlui fgfs_qm_files)
endif()

View file

@ -88,6 +88,8 @@ add_executable(fgfs
)
add_dependencies(fgfs buildId)
# explicitly disable automoc for main fgfs target
set_property(TARGET fgfs PROPERTY AUTOMOC OFF)
# MacOSX bundle packaging
if(APPLE)