diff options
author | Julien Lavergne <gilir@ubuntu.com> | 2013-01-05 17:34:12 +0100 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2014-01-03 08:02:30 -0200 |
commit | d33b2ea95fe556502b0cc64143e8fadbebd5f42d (patch) | |
tree | 29dfaff020399094ead3470d66e3fba1d1adde57 /CMakeLists.txt | |
parent | 5b3a1c66d5dfbbb7421987a71f946faa43cad43f (diff) |
Realize that we are using cmake, and modify the build system using elementary module
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f1ea09f4..cfdb658a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,6 @@ project(HardInfo) cmake_minimum_required(VERSION 2.6) +cmake_policy(VERSION 2.6) set(HARDINFO_VERSION "0.5.2pre") @@ -48,6 +49,8 @@ message(STATUS "Building HardInfo for architecture: ${HARDINFO_OS}-${HARDINFO_AR add_definitions("-std=gnu89") +add_subdirectory(po) + include(FindPkgConfig) pkg_check_modules(GTK REQUIRED gtk+-2.0>=2.10 glib-2.0>=2.10 gthread-2.0>=2.10 gmodule-export-2.0>=2.10) pkg_check_modules(LIBSOUP libsoup-2.4>=2.24) |