CBuild
C++ build system with scripts written in c++
Loading...
Searching...
No Matches
CBuild_defs.hpp
Go to the documentation of this file.
1
21// std::string
22#include "string"
23// Defines
27#define CBUILD_CACHE_DIR std::string("cache")
31#define CBUILD_COPY_CACHE_DIR std::string("tmp")
35#define CBUILD_BUILD_DIR std::string("build")
39#define CBUILD_BUILD_OUT_DIR std::string("out")
43#define CBUILD_BUILD_CACHE_DIR std::string("objs")
47#define CBUILD_SCRIPTS_DIR std::string("scripts")
51#define CBUILD_MAKEFILE std::string("Makefile")
55#define CBUILD_COMPILE_COMMAND_JSON std::string("compile_commands.json")
59#define CBUILD_PROJECT_DEPS_DIR std::string("libs")
63#define CBUILD_PROJECT_DEPS_HEADERS std::string("headers")
67#define CBUILD_METADATA_FOLDER std::string("config")
71#define CBUILD_METADATA_FILE_EXTENSION std::string(".meta")
75#define CBUILD_VERSION_MAJOR (int)13
76#define CBUILD_VERSION_MINOR (int)0
77#define CBUILD_VERSION_STR std::string("13.0")
81#define CBUILD_COMPILER_VERSION std::string(__VERSION__)
82#define CBUILD_COMPILATION_DATE std::string(__DATE__)
83#define CBUILD_COMPILATION_TIME std::string(__TIME__)