blob: ffb2c65fe95f16902d8e39c504baa4a8c19bd40a (
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
)";
|