September 2018
Intermediate to advanced
606 pages
14h 32m
English
Let us go through the necessary steps in detail, as follows:
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)project(recipe-04 LANGUAGES CXX)set(CMAKE_CXX_STANDARD 11)set(CMAKE_CXX_EXTENSIONS OFF)set(CMAKE_CXX_STANDARD_REQUIRED ON)
find_package(Threads REQUIRED)add_executable(example example.cpp)target_link_libraries(example PUBLIC Threads::Threads )
option(ENABLE_TSAN "Enable ...
Read now
Unlock full access