You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
535 B
42 lines
535 B
#pragma once
|
|
|
|
const char *hello_world = R"lit(
|
|
#include <iostream>
|
|
|
|
int %s() {
|
|
std::cout << "Hello World!\n";
|
|
return 0;
|
|
}
|
|
)lit";
|
|
|
|
const char *cmake_toml = R"lit(
|
|
[cmake]
|
|
minimum = "3.14"
|
|
# subdirs = []
|
|
# bin-dir = ""
|
|
# cpp-flags = []
|
|
# c-flags = []
|
|
# link-flags = []
|
|
# generator = ""
|
|
# arguments = []
|
|
|
|
[project]
|
|
name = "%s"
|
|
version = "0.1.0"
|
|
|
|
# [find-package]
|
|
|
|
# [fetch-content]
|
|
|
|
# [options]
|
|
|
|
[[bin]]
|
|
name = "%s"
|
|
type = "%s"
|
|
sources = ["src/main.cpp"]
|
|
# include-dirs = []
|
|
# features = []
|
|
# defines = []
|
|
# link-libs = []
|
|
)lit";
|