2018-10-17 17:36:56 -04:00
|
|
|
include(QtUtils)
|
|
|
|
msvc_registry_search()
|
|
|
|
find_qt5(Core Widgets)
|
|
|
|
|
2018-08-19 00:13:19 -04:00
|
|
|
cmake_policy(SET CMP0037 OLD)
|
2018-08-19 15:26:50 -04:00
|
|
|
|
2019-06-10 13:58:19 -04:00
|
|
|
add_library(Bing\ Translate MODULE bingtranslate.cpp extensionimpl.cpp)
|
|
|
|
add_library(Copy\ to\ Clipboard MODULE copyclipboard.cpp extensionimpl.cpp)
|
|
|
|
add_library(Extra\ Newlines MODULE extranewlines.cpp extensionimpl.cpp)
|
|
|
|
add_library(Extra\ Window MODULE extrawindow.cpp extensionimpl.cpp)
|
|
|
|
add_library(Google\ Translate MODULE googletranslate.cpp extensionimpl.cpp)
|
|
|
|
add_library(Lua MODULE lua.cpp extensionimpl.cpp)
|
|
|
|
add_library(Regex\ Filter MODULE regexfilter.cpp extensionimpl.cpp)
|
|
|
|
add_library(Remove\ Repetition MODULE removerepeat.cpp extensionimpl.cpp)
|
|
|
|
add_library(Replacer MODULE replacer.cpp extensionimpl.cpp)
|
|
|
|
add_library(Thread\ Linker MODULE threadlinker.cpp extensionimpl.cpp)
|
2018-08-19 15:26:50 -04:00
|
|
|
|
2018-12-28 11:57:06 -05:00
|
|
|
add_executable(Extension_Tests extensiontester.cpp)
|
|
|
|
|
2018-11-03 23:26:27 -04:00
|
|
|
target_link_libraries(Bing\ Translate winhttp Qt5::Widgets)
|
2018-12-21 15:11:12 -05:00
|
|
|
target_link_libraries(Extra\ Window Qt5::Widgets)
|
2018-11-03 23:58:52 -04:00
|
|
|
target_link_libraries(Google\ Translate winhttp Qt5::Widgets)
|
2019-02-12 19:54:15 -05:00
|
|
|
target_link_libraries(Lua lua53 Qt5::Widgets)
|
2018-11-03 23:58:52 -04:00
|
|
|
target_link_libraries(Regex\ Filter Qt5::Widgets)
|
2019-01-22 14:35:34 -05:00
|
|
|
target_link_libraries(Thread\ Linker Qt5::Widgets)
|