CMake minimal build and dependencies (#5013)

This commit is contained in:
Matej Kenda
2025-09-06 13:34:59 +02:00
committed by GitHub
parent 5886ee818d
commit 317ce8aae8
26 changed files with 255 additions and 235 deletions

View File

@@ -1,9 +1,13 @@
#include <iostream>
#include <string>
#include <optional>
using namespace std::literals;
int main()
{
std::string str = "Try to compile";
std::cout << str << '\n';
std::optional<std::string> option;
std::string str = "Try to compile"s;
std::cout << str << " "s << option.has_value() << '\n';
return 0;
}