diff options
author | Frederic Marec <frederic.marec@iot.bzh> | 2020-02-18 16:32:10 +0100 |
---|---|---|
committer | Frederic Marec <frederic.marec@iot.bzh> | 2020-02-20 15:05:27 +0100 |
commit | 055909f4a7b27003bdd60c1cee764cf1d23be9cc (patch) | |
tree | b528d83b18bd4b1120dd1a7f30127f8db348674f /CMakeLists.txt | |
parent | b9969c45e5a2f01e672270fab1348c81b7ff3288 (diff) |
Update autobuild script to create new targets
Update autobuild script to create multiple widget target debug, coverage and all
Add config.cmake to match with the cmake-app-module
Change CMakeLists following those changes
Bug-AGL: SPEC-2049
Signed-off-by: Frederic Marec <frederic.marec@iot.bzh>
Change-Id: Iad8261dbd7e02b1cafcfd29db82015d2db5445c1
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 23 |
1 files changed, 2 insertions, 21 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5e1baa6..3fe99ce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,25 +14,6 @@ # limitations under the License. # -project(HomeScreenService C CXX) +CMAKE_MINIMUM_REQUIRED(VERSION 3.3) -cmake_minimum_required(VERSION 3.0) - -set(PROJECT_NAME "HomeScreen Service") -set(PROJECT_VERSION "1.0") -set(PROJECT_PRETTY_NAME "HM") -set(PROJECT_DESCRIPTION "HomeScreen Service") -set(PROJECT_INCLUDEDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_INCLUDEDIR}) -set(PROJECT_LIBDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}) -set(binding_install_dir ${PREFIX}/lib/homescreen) -set(PROJECT_BINDINGDIR ${binding_install_dir}) - -# get pkgconfig -INCLUDE(FindPkgConfig) -link_libraries(-Wl,--as-needed -Wl,--gc-sections -Wl,--no-undefined) - -set(CMAKE_BUILD_TYPE Debug) -set(DEBUGMODE "1") -add_definitions(-DDEBUGMODE) - -add_subdirectory(src) +include(${CMAKE_CURRENT_SOURCE_DIR}/conf.d/cmake/config.cmake) |