diff options
Diffstat (limited to 'src/ui/CMakeLists.txt')
-rw-r--r-- | src/ui/CMakeLists.txt | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/ui/CMakeLists.txt b/src/ui/CMakeLists.txt index 2527da46..d92a63ed 100644 --- a/src/ui/CMakeLists.txt +++ b/src/ui/CMakeLists.txt @@ -1,9 +1,11 @@ -aux_source_directory(. QTUI_SOURCE) -aux_source_directory(./keypair_details QTUI_SOURCE) -aux_source_directory(./widgets QTUI_SOURCE) -aux_source_directory(./keygen QTUI_SOURCE) +aux_source_directory(. UI_SOURCE) +aux_source_directory(./keypair_details UI_SOURCE) +aux_source_directory(./widgets UI_SOURCE) +aux_source_directory(./keygen UI_SOURCE) -add_library(qtui STATIC ${QTUI_SOURCE} ${QTUI_KEYPAIR_DETAILS_SOURCE}) +add_library(gpgfrontend-ui STATIC ${UI_SOURCE}) -target_link_libraries(qtui - Qt5::Network Qt5::PrintSupport Qt5::Widgets Qt5::Test Qt5::Core)
\ No newline at end of file +target_link_libraries(gpgfrontend-ui + Qt5::Network Qt5::PrintSupport Qt5::Widgets Qt5::Test Qt5::Core) + +message(STATUS "UI SOURCE ${UI_SOURCE}")
\ No newline at end of file |