Skip to content

Commit b51a72b

Browse files
committed
Add json save/write utilities
Tests implemented by @claude
1 parent 60b4543 commit b51a72b

7 files changed

Lines changed: 6129 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
TEST_DIR := source/catch
33
EMP_DIR := Empirical/include
44
SGP_DIR := signalgp-lite/include
5+
CEREAL_DIR := signalgp-lite/third-party/cereal/include
56

67
# Flags to use regardless of compiler
78
VENDORIZE_EMP_FLAGS := -DUIT_VENDORIZE_EMP -DUIT_SUPPRESS_MACRO_INSEEP_WARNINGS
8-
CFLAGS_all := -Wall -Wno-unused-function -std=c++20 -I$(EMP_DIR)/ -I$(SGP_DIR)/ ${VENDORIZE_EMP_FLAGS}
9+
CFLAGS_all := -Wall -Wno-unused-function -std=c++20 -I$(EMP_DIR)/ -I$(SGP_DIR)/ -I$(CEREAL_DIR)/ ${VENDORIZE_EMP_FLAGS}
910

1011
# Native compiler information
1112
CXX_nat := g++

0 commit comments

Comments
 (0)