September 2018
Intermediate to advanced
606 pages
14h 32m
English
We will build up the CMakeLists.txt file step by step:
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)project(recipe-01 LANGUAGES NONE)
find_package(PythonInterp REQUIRED)
execute_process( COMMAND ${PYTHON_EXECUTABLE} "-c" "print('Hello, world!')" RESULT_VARIABLE _status OUTPUT_VARIABLE _hello_world ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE )
message(STATUS "RESULT_VARIABLE ...
Read now
Unlock full access