September 2018
Intermediate to advanced
606 pages
14h 32m
English
Let us first go through the root CMakeLists.txt file:
# CMake 3.6 needed for IMPORTED_TARGET option# to pkg_search_modulecmake_minimum_required(VERSION 3.6 FATAL_ERROR)
project(recipe-01 LANGUAGES CXX VERSION 1.0.0 )# <<< General set up >>>set(CMAKE_CXX_STANDARD 11)set(CMAKE_CXX_EXTENSIONS OFF)set(CMAKE_CXX_STANDARD_REQUIRED ON)
Read now
Unlock full access