September 2018
Intermediate to advanced
606 pages
14h 32m
English
This is a C project and we will use the C99 standard. We will build the CMakeLists.txt file step by step:
cmake_minimum_required(VERSION 3.6 FATAL_ERROR) project(recipe-09 LANGUAGES C)set(CMAKE_C_STANDARD 99)set(CMAKE_C_EXTENSIONS OFF)set(CMAKE_C_STANDARD_REQUIRED ON)
find_package(PkgConfig REQUIRED QUIET)
Read now
Unlock full access