Textractor/GUI/CMakeLists.txt

23 lines
491 B
CMake
Raw Normal View History

2018-07-28 09:25:32 +03:00
include(QtUtils)
msvc_registry_search()
find_qt5(Core Widgets)
2019-06-07 02:19:51 -04:00
add_executable(Textractor WIN32
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
2019-02-18 23:12:12 -05:00
Textractor.rc
Textractor.ico
2018-07-28 09:25:32 +03:00
)
target_link_libraries(${PROJECT_NAME} Qt5::Widgets shell32 winhttp)
2019-02-25 00:08:20 -05:00
if (NOT EXISTS ${CMAKE_FINAL_OUTPUT_DIRECTORY}/Qt5Core.dll)
if (NOT EXISTS ${CMAKE_FINAL_OUTPUT_DIRECTORY}/Qt5Cored.dll)
install_qt5_libs(${PROJECT_NAME})
endif()
endif()