blob: bb0b2bb04ca1285bbd376d5b0fbf0014f744705c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <string_view>
constexpr std::string_view readme_txt_file_path = "readme.txt";
constexpr std::string_view readme_txt_file_content =
R"(# Generated by keldu's stupid blueprint program
Remember to:
* Change the binary name in app/c++/SConscript
* Add the pname in app/.nix/derivation.nix
)";
|