2018-07-28 14:25:32 +08:00
|
|
|
include(QtUtils)
|
|
|
|
msvc_registry_search()
|
|
|
|
find_qt5(Core Widgets)
|
|
|
|
|
2019-02-19 12:12:12 +08:00
|
|
|
add_executable(${PROJECT_NAME} WIN32
|
2018-07-28 14:25:32 +08:00
|
|
|
main.cpp
|
|
|
|
mainwindow.cpp
|
2018-11-02 02:07:42 +08:00
|
|
|
extenwindow.cpp
|
2019-02-01 00:41:43 +08:00
|
|
|
host/exception.cpp
|
2018-11-23 04:54:11 +08:00
|
|
|
host/host.cpp
|
|
|
|
host/textthread.cpp
|
2018-11-23 04:53:32 +08:00
|
|
|
host/util.cpp
|
2019-02-19 12:12:12 +08:00
|
|
|
Textractor.rc
|
|
|
|
Textractor.ico
|
2018-07-28 14:25:32 +08:00
|
|
|
)
|
2019-02-25 13:08:20 +08:00
|
|
|
target_compile_options(${PROJECT_NAME} PRIVATE $<$<CONFIG:RelWithDebInfo>:/GL>)
|
|
|
|
target_link_libraries(${PROJECT_NAME} Qt5::Widgets shell32 winhttp $<$<CONFIG:RelWithDebInfo>:-LTCG>)
|
|
|
|
|
2018-07-28 14:25:32 +08:00
|
|
|
|
2019-02-20 15:19:30 +08:00
|
|
|
install_qt5_libs(${PROJECT_NAME}) # can be commented out for consecutive builds
|