diff options
author | gregory guy <gregory-tde@laposte.net> | 2021-10-07 15:17:57 +0200 |
---|---|---|
committer | gregory guy <gregory-tde@laposte.net> | 2021-11-30 11:04:08 +0100 |
commit | a69b55c674b0528c00598bea54b7a661f4e49f27 (patch) | |
tree | 93ab3c9c6a8c3be0d8e0da81391904a07f515a57 /designer/CMakeLists.txt | |
parent | 0896465ce705beabf8562afbabd49f8b92bf3412 (diff) | |
download | tqscintilla-a69b55c674b0528c00598bea54b7a661f4e49f27.tar.gz tqscintilla-a69b55c674b0528c00598bea54b7a661f4e49f27.zip |
Conversion to the cmake building system.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'designer/CMakeLists.txt')
-rw-r--r-- | designer/CMakeLists.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/designer/CMakeLists.txt b/designer/CMakeLists.txt new file mode 100644 index 0000000..91cb885 --- /dev/null +++ b/designer/CMakeLists.txt @@ -0,0 +1,24 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TQT_INCLUDE_DIRS} + ${CMAKE_SOURCE_DIR}/qt +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### qscintillaplugin (shared) + +tde_add_library( qscintillaplugin SHARED + + SOURCES + qscintillaplugin.cpp + LINK + qscintilla-shared + + DESTINATION ${TQT_PLUGINS_DIR}/designer +) |