From 2c7714e6a1ccc5fdcfc2e1833d6c54135cdffb07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Thu, 26 Aug 2021 02:36:35 +0200 Subject: Initial import of ksshaskpass 0.4.1. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- CMakeLists.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..eaf05a3 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,17 @@ +project(ksshaskpass) # the name of your project + +cmake_minimum_required(VERSION 2.4.0) + +find_package(Qt3 REQUIRED) # find and setup Qt3 for this project +find_package(KDE3 REQUIRED) # find and setup KDE3 for this project + +add_definitions(${QT_DEFINITIONS} ${KDE3_DEFINITIONS}) + +# tell cmake where to search for libraries: +link_directories(${KDE3_LIB_DIR}) + +# tell cmake where to search for Qt/KDE headers: +include_directories(${KDE3_INCLUDE_DIR} ${QT_INCLUDE_DIR}) + +# tell cmake to process CMakeLists.txt in that subdirectory +add_subdirectory(src) -- cgit v1.2.1