mirror of
https://github.com/Ed94/gencpp.git
synced 2025-06-15 11:11:46 -07:00
Finished initial implmentation bootstrap generation and singleheader implementation.
This commit is contained in:
0
project/components/AttributeTokens.csv
Normal file
0
project/components/AttributeTokens.csv
Normal file
|
0
project/components/ECode.csv
Normal file
0
project/components/ECode.csv
Normal file
|
0
project/components/EOperator.csv
Normal file
0
project/components/EOperator.csv
Normal file
|
0
project/components/ESpecifier.csv
Normal file
0
project/components/ESpecifier.csv
Normal file
|
0
project/components/ETokType.csv
Normal file
0
project/components/ETokType.csv
Normal file
|
@ -402,7 +402,7 @@ StrC token_fmt_impl( sw num, ... )
|
||||
# define GEN_MAX_NAME_LENGTH 128
|
||||
#endif
|
||||
#ifndef GEN_MAX_UNTYPED_STR_LENGTH
|
||||
# define GEN_MAX_UNTYPED_STR_LENGTH kilobytes(640)
|
||||
# define GEN_MAX_UNTYPED_STR_LENGTH megabytes(1)
|
||||
#endif
|
||||
#ifndef GEN_TOKEN_FMT_TOKEN_MAP_MEM_SIZE
|
||||
# define GEN_TOKEN_FMT_TOKEN_MAP_MEM_SIZE kilobytes(4)
|
||||
|
@ -13,5 +13,5 @@
|
||||
//! If its desired to roll your own dependencies, define GEN_ROLL_OWN_DEPENDENCIES before including this file.
|
||||
// Dependencies are derived from the c-zpl library: https://github.com/zpl-c/zpl
|
||||
#ifndef GEN_ROLL_OWN_DEPENDENCIES
|
||||
# include "dependencies/gen.dep.hpp"
|
||||
# include "gen.dep.hpp"
|
||||
#endif
|
||||
|
9
project/components/gen.impl_start.cpp
Normal file
9
project/components/gen.impl_start.cpp
Normal file
@ -0,0 +1,9 @@
|
||||
#if ! defined(GEN_DONT_ENFORCE_GEN_TIME_GUARD) && ! defined(GEN_TIME)
|
||||
# error Gen.hpp : GEN_TIME not defined
|
||||
#endif
|
||||
|
||||
//! If its desired to roll your own dependencies, define GEN_ROLL_OWN_DEPENDENCIES before including this file.
|
||||
//! Dependencies are derived from the c-zpl library: https://github.com/zpl-c/zpl
|
||||
#ifndef GEN_ROLL_OWN_DEPENDENCIES
|
||||
# include "gen.dep.cpp"
|
||||
#endif
|
Reference in New Issue
Block a user