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.20) | |
project(min LANGUAGES CXX) | |
message(STATUS "CMAKE_OSX_SYSROOT ${CMAKE_OSX_SYSROOT}") | |
foreach(i IN ITEMS OS_NAME OS_VERSION OS_RELEASE OS_PLATFORM) | |
cmake_host_system_information(RESULT ${i} QUERY ${i}) | |
message(STATUS "${i}: ${${i}}") | |
endforeach() |
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
#include <chrono> | |
#include <cstring> | |
#include <string> | |
#include <fstream> | |
#include <istream> | |
#include <iostream> | |
#include <sstream> | |
#include <boost/tokenizer.hpp> |