diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-10-30 01:50:51 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-10-30 01:50:51 +0100 |
commit | 63b34dc6ccd32c9bc7c3d8c0137ff12530238bde (patch) | |
tree | f0f93e418c0556377487754c2e740f90497ffc51 /CMakeLists.txt | |
download | rekonq-63b34dc6ccd32c9bc7c3d8c0137ff12530238bde.tar.xz |
reKonq initial commit. Yeah!
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..78d320d6 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,22 @@ +# Andrea Diamantini - adjam7 at gmail dot com +# rekonq project + +PROJECT( rekonq ) + +CMAKE_MINIMUM_REQUIRED(VERSION 2.6.0) + +SET( QT_MIN_VERSION 4.4.0) +FIND_PACKAGE( KDE4 REQUIRED ) + +INCLUDE(KDE4Defaults) +INCLUDE(MacroLibrary) + +INCLUDE_DIRECTORIES( ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${KDE4_INCLUDES} + ${QT4_INCLUDES} + ${QT_QTNETWORK_INCLUDE_DIR} + ${QT_QTWEBKIT_INCLUDE_DIR} +) + +ADD_SUBDIRECTORY( src ) |