diff options
Diffstat (limited to 'cmake/opentrack-boilerplate.cmake')
-rw-r--r-- | cmake/opentrack-boilerplate.cmake | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cmake/opentrack-boilerplate.cmake b/cmake/opentrack-boilerplate.cmake index 9d72c1af..40f65474 100644 --- a/cmake/opentrack-boilerplate.cmake +++ b/cmake/opentrack-boilerplate.cmake @@ -117,8 +117,6 @@ function(otr_install_pdb_current_project target) endif() endfunction() -include(CMakeParseArguments) - function(otr_module n_) message(STATUS "module ${n_}") cmake_parse_arguments(arg @@ -173,6 +171,10 @@ function(otr_module n_) set_property(TARGET "${n}" PROPERTY PREFIX "") endif() + if(NOT arg_NO-QT) + otr_qt2("${n}") + endif() + set(self "${n}" PARENT_SCOPE) if(NOT arg_RELINK) |