bdd63e89
Peter M. Groen
Setting up build-...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
cmake_minimum_required(VERSION 3.12)
project(mqtt-tools)
# ===========================================================================
# == Check to see if we're a submodule or top-repo.
if( IS_DIRECTORY ${CMAKE_SOURCE_DIR}/cmake)
message( STATUS "Looks like we're a single module." )
LIST( APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
else()
message( FATAL_ERROR "No cmake directory founnd. Did you run the submodules script?" )
endif()
# ============================================================================
# == Check to see if there is versioning information available
if( IS_DIRECTORY ${CMAKE_SOURCE_DIR}/versioning/cmake)
LIST( APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/versioning/cmake)
else()
message( FATAL_ERROR "No ${CMAKE_SOURCE_DIR}/osdev_versioning directory found." )
endif()
# ============================================================================
# == Include build information
include(osdevversion)
include(projectheader)
project_header(mqtt-tools)
add_subdirectory(src/controlcentre)
include(packaging)
package_component()
|