File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 6
6
#include < CascLib.h>
7
7
#include < CascCommon.h>
8
8
#pragma warning(pop)
9
+ #include < core/actsinfo.hpp>
9
10
10
11
11
12
namespace fastfile {
@@ -781,6 +782,9 @@ namespace fastfile {
781
782
#ifdef CI_BUILD
782
783
ctx.zone .preProcOpt .defines .insert (" CI" );
783
784
#endif
785
+ if (core::actsinfo::DEV_VERSION_ID == core::actsinfo::VERSION_ID) {
786
+ ctx.zone .preProcOpt .defines .insert (" ACTS_DEV" );
787
+ }
784
788
785
789
ctx.ReadZoneFile ();
786
790
Original file line number Diff line number Diff line change 5
5
namespace fastfile ::zone {
6
6
class Zone {
7
7
core::memory_allocator::MemoryAllocator alloc{};
8
- acts::compiler::preprocessor::PreProcessorOption preProcOpt{};
9
8
public:
9
+ acts::compiler::preprocessor::PreProcessorOption preProcOpt{};
10
10
std::unordered_map<std::string, std::vector<const char *>> assets;
11
11
std::unordered_map<std::string, const char *> cfgs;
12
12
You can’t perform that action at this time.
0 commit comments