This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.15) | |
project(lrm100 LANGUAGES CXX) | |
# Set CXX standard | |
set(CMAKE_CXX_STANDARD 20) | |
set(CMAKE_CXX_STANDARD_REQUIRED ON) | |
# Find vcpkg packages if available | |
find_package(PkgConfig QUIET) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.15) | |
project(main LANGUAGES C) | |
# Set C standard | |
set(CMAKE_C_STANDARD 17) | |
set(CMAKE_C_STANDARD_REQUIRED ON) | |
# Find vcpkg packages if available | |
find_package(PkgConfig QUIET) | |