diff options
| author | gregory guy <gregory-tde@laposte.net> | 2021-03-15 15:32:40 +0100 |
|---|---|---|
| committer | Alexander Golubev <fatzer2@gmail.com> | 2024-03-08 14:50:56 +0300 |
| commit | f696b7c31f1ea08f0a98fd7201cea9e2e4492ed5 (patch) | |
| tree | ea0bdd7feceb14ad466b432b513721bd0f2d065c /src/inputmethod | |
| parent | fad4acbe084403340bb0ee6979ea18db464e7085 (diff) | |
| download | tqt-f696b7c31f1ea08f0a98fd7201cea9e2e4492ed5.tar.gz tqt-f696b7c31f1ea08f0a98fd7201cea9e2e4492ed5.zip | |
Conversion to the cmake building system.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'src/inputmethod')
| -rw-r--r-- | src/inputmethod/CMakeLists.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/inputmethod/CMakeLists.txt b/src/inputmethod/CMakeLists.txt new file mode 100644 index 000000000..27ef77133 --- /dev/null +++ b/src/inputmethod/CMakeLists.txt @@ -0,0 +1,31 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_BINARY_DIR}/include +) + +link_directories() + + +##### inputmethod (static) + +set( target inputmethod ) +set( _SRC_ qinputcontextfactory.cpp + qinputcontextplugin.cpp +) + + +tde_add_library( ${target} STATIC_PIC + + SOURCES + ${_SRC_} + + DEPENDENCIES + tqt-includes +) + +tqt_automoc( ${target}-static ) + +list( APPEND tqtlib_embed ${target}-static ) +set( tqtlib_embed ${tqtlib_embed} PARENT_SCOPE ) |
