diff options
author | Michele Calgaro <[email protected]> | 2024-03-05 19:43:11 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-03-08 10:39:04 +0900 |
commit | bc9bda10c93ebfb9862270576b445d1c2798d66d (patch) | |
tree | b55e4d3b49d75130f681bcb2f680858d5395f1b2 /src/CMakeLists.txt | |
parent | a8bf4dbf8aa3c20f60454a296278f8d00c83617a (diff) | |
download | gwenview-bc9bda10c93ebfb9862270576b445d1c2798d66d.tar.gz gwenview-bc9bda10c93ebfb9862270576b445d1c2798d66d.zip |
Conversion to cmake building system
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..3f4dd63 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,24 @@ +include_directories( + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_BINARY_DIR} + ${TQT_INCLUDE_DIRS} + ${TDE_INCLUDE_DIR} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} +) + + +##### subfolders + +add_subdirectory( app ) +add_subdirectory( desktopfiles ) +add_subdirectory( gvcore ) +add_subdirectory( gvdirpart ) +add_subdirectory( gvimagepart ) +add_subdirectory( imageutils ) +add_subdirectory( tools ) +add_subdirectory( tsthread ) +add_subdirectory( updates ) |