September 2018
Intermediate to advanced
606 pages
14h 32m
English
Let us have a look at our CMakeLists.txt:
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)project(recipe-05 LANGUAGES Fortran)
find_package(PythonInterp REQUIRED)
if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type" FORCE)endif()
add_executable(example "")target_sources(example PRIVATE example.f90 )
Read now
Unlock full access