blob: eaf05a3b0f1df95a690316df4aa3ba851a569879 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)
|