September 2018
Intermediate to advanced
606 pages
14h 32m
English
We will construct the CMakeLists.txt step by step and show how to require a certain standard (in this case C++14):
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)project(recipe-09 LANGUAGES CXX)
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
add_library(animals SHARED Animal.cpp Animal.hpp Cat.cpp Cat.hpp Dog.cpp Dog.hpp Factory.hpp )
Read now
Unlock full access