build: make sure that translations are built before the source files

this makes sure that the I18N tests are not run before the translation files are generated.
This commit is contained in:
sithlord48
2025-12-12 21:33:14 -05:00
committed by Nick Bolton
parent c942de81e7
commit ef734a869c

View File

@ -183,9 +183,12 @@ else()
endif()
add_subdirectory(doc)
add_subdirectory(src)
# build translations before source, I18N unit tests fail if they are missing
add_subdirectory(translations)
add_subdirectory(src)
option(BUILD_INSTALLER "Build installer" ON)
if(BUILD_INSTALLER)
add_subdirectory(deploy)