Textractor/GUI/CMakeLists.txt

21 lines
470 B
CMake
Raw Normal View History

2018-07-28 09:25:32 +03:00
include(QtUtils)
msvc_registry_search()
find_qt5(Core Widgets)
set(AUTOMOC OFF)
2018-07-28 09:25:32 +03:00
2018-09-29 16:05:08 -04:00
set(RESOURCE_FILES Textractor.rc Textractor.ico)
set(gui_src
2018-07-28 09:25:32 +03:00
main.cpp
mainwindow.cpp
extenwindow.cpp
host/exception.cpp
2018-11-22 15:54:11 -05:00
host/host.cpp
host/textthread.cpp
host/util.cpp
2018-08-02 17:18:08 -04:00
${RESOURCE_FILES}
2018-07-28 09:25:32 +03:00
)
add_executable(${PROJECT_NAME} WIN32 ${gui_src})
2018-12-13 07:54:25 -05:00
target_link_libraries(${PROJECT_NAME} Qt5::Widgets winhttp)
2018-07-28 09:25:32 +03:00
2019-02-04 15:54:41 -05:00
install_qt5_libs(${PROJECT_NAME}) # can be commented out for consecutive builds