-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHephaistos.cmake
More file actions
26 lines (22 loc) · 787 Bytes
/
Copy pathHephaistos.cmake
File metadata and controls
26 lines (22 loc) · 787 Bytes
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
# ---------------------------------------------------------------------------- #
# CMake Hephaistos module
#
# Nicolas Clauvelin (n.clauvelin+code@gmail.com)
# nicocvn.com, 2017
#
#
# MODULE: Hephaistos
#
# This file is to be included by any CMake script using Hephaistos.
# See README.md for mode details about functionalities.
#
# ---------------------------------------------------------------------------- #
# CMake minimum version.
cmake_minimum_required(VERSION 3.8)
# Current file location.
set(_HephaistosDir ${CMAKE_CURRENT_LIST_DIR})
# Load scripts.
include(${_HephaistosDir}/scripts/SysConfig.cmake)
include(${_HephaistosDir}/scripts/CompilerSetup.cmake)
include(${_HephaistosDir}/scripts/ProjectTree.cmake)
include(${_HephaistosDir}/scripts/ToolchainManager.cmake)