Support WXQT in CMake

This commit is contained in:
Maarten Bent
2018-09-25 19:41:17 +02:00
parent 4c06c43f26
commit 1dfe088b4d
9 changed files with 60 additions and 13 deletions

View File

@@ -41,6 +41,11 @@ elseif(WXOSX_COCOA)
wx_append_sources(CORE_SRC OSX_LOWLEVEL)
wx_append_sources(CORE_SRC OSX_SHARED)
wx_append_sources(CORE_SRC OSX_COCOA)
elseif(WXQT)
wx_append_sources(CORE_SRC QT)
if(WIN32)
wx_append_sources(CORE_SRC QT_WIN32)
endif()
endif()
wx_add_library(core ${CORE_SRC})