Commit 4f0127a74b301ed89154040da3359df80b1435c3
1 parent
2bd3ff48
Adapted to new versioning sustem
Showing
1 changed file
with
1 additions
and
23 deletions
CMakeLists.txt
1 | cmake_minimum_required(VERSION 3.0) | 1 | cmake_minimum_required(VERSION 3.0) |
2 | +LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/submodules/cmake) | ||
2 | project(osdev_qt-bluetooth) | 3 | project(osdev_qt-bluetooth) |
3 | # ============================================================================== | 4 | # ============================================================================== |
4 | -# Check to see if we're a submodule or top-repo. | ||
5 | -if(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/submodules/cmake) | ||
6 | - message( STATUS "Looks like we're a single module" ) | ||
7 | - LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/submodules/cmake) | ||
8 | -elseif(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../submodules/cmake) | ||
9 | - message( STATUS "Looks like we're a submodule" ) | ||
10 | - LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../submodules/cmake) | ||
11 | -else() | ||
12 | - message( FATAL_ERROR "No cmake directory found. Did you run the submodules script?" ) | ||
13 | -endif() | ||
14 | - | ||
15 | -# ============================================================================== | ||
16 | -# Check to see if there is versioning information available | ||
17 | -if(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/submodules/versioning) | ||
18 | - LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/submodules/versioning/cmake) | ||
19 | -elseif(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../submodules/versioning) | ||
20 | - LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../submodules/versioning/cmake) | ||
21 | -else() | ||
22 | - message( FATAL_ERROR "No ${CURRENT_SOURCE_DIR}/osdev_versioning directory found. Did you run the submodules script?" ) | ||
23 | -endif() | ||
24 | - | ||
25 | -# ============================================================================== | ||
26 | - | ||
27 | 5 | ||
28 | include(projectheader) | 6 | include(projectheader) |
29 | project_header(osdev_qt-bluetooth) | 7 | project_header(osdev_qt-bluetooth) |