From 034917177b87acc483f034fe2e76dd9d4f2ba1b6 Mon Sep 17 00:00:00 2001 From: rexy712 Date: Sat, 11 Apr 2020 07:10:11 -0700 Subject: [PATCH] Fix rjp++ not being able to be built against --- rjp++/CMakeLists.txt | 2 +- rjp++/include/dispatch.hpp | 5 ++++- rjp++/include/rjp.hpp | 1 - 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/rjp++/CMakeLists.txt b/rjp++/CMakeLists.txt index 0efbe15..64acff1 100644 --- a/rjp++/CMakeLists.txt +++ b/rjp++/CMakeLists.txt @@ -33,7 +33,7 @@ set_target_properties(rjp++ PROPERTIES PUBLIC_HEADER ${INCLUDE_PATH}/rjp.hpp) set(CPP_HEADERS ${INCLUDE_PATH}/array.hpp ${INCLUDE_PATH}/integral.hpp ${INCLUDE_PATH}/iterator.hpp ${INCLUDE_PATH}/member.hpp ${INCLUDE_PATH}/object.hpp ${INCLUDE_PATH}/parse.hpp ${INCLUDE_PATH}/string.hpp ${INCLUDE_PATH}/string_val.hpp ${INCLUDE_PATH}/value.hpp - ${INCLUDE_PATH}/rjp_util.hpp ${INCLUDE_PATH}/dispatch.hpp) + ${INCLUDE_PATH}/rjp_util.hpp ${INCLUDE_PATH}/dispatch.hpp ${INCLUDE_PATH}/container.hpp) if(ENABLE_PROFILING) diff --git a/rjp++/include/dispatch.hpp b/rjp++/include/dispatch.hpp index 5b944e7..53f48aa 100644 --- a/rjp++/include/dispatch.hpp +++ b/rjp++/include/dispatch.hpp @@ -19,7 +19,10 @@ #ifndef RJP_DISPATCH_HPP #define RJP_DISPATCH_HPP -#include "rjp_internal.hpp" +#include "object.hpp" +#include "integral.hpp" +#include "array.hpp" +#include "value.hpp" #include //is_same, true_type, false_type #include //forward #include diff --git a/rjp++/include/rjp.hpp b/rjp++/include/rjp.hpp index 1fe5f4f..77d00a4 100644 --- a/rjp++/include/rjp.hpp +++ b/rjp++/include/rjp.hpp @@ -24,7 +24,6 @@ #include #include #include -#include #include #include #include