Textractor_test/GUI/CMakeLists.txt
Akash Mozumdar 2be762b708 reorganize
2018-08-25 15:51:18 -04:00

20 lines
418 B
CMake

include(QtUtils)
msvc_registry_search()
find_qt5(Core Widgets)
set(RESOURCE_FILES NextHooker.rc NextHooker.ico)
# Populate a CMake variable with the sources
set(gui_SRCS
main.cpp
mainwindow.cpp
misc.cpp
extensions.cpp
host/host.cc
host/textthread.cc
${RESOURCE_FILES}
)
add_executable(${PROJECT_NAME} WIN32 ${gui_SRCS})
target_link_libraries(${PROJECT_NAME} Qt5::Widgets)
install_qt5_libs(${PROJECT_NAME})