Fix rjp++ not being able to be built against

This commit is contained in:
rexy712 2020-04-11 07:10:11 -07:00
parent bb62727333
commit 034917177b
3 changed files with 5 additions and 3 deletions

View File

@ -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 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}/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}/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) if(ENABLE_PROFILING)

View File

@ -19,7 +19,10 @@
#ifndef RJP_DISPATCH_HPP #ifndef RJP_DISPATCH_HPP
#define RJP_DISPATCH_HPP #define RJP_DISPATCH_HPP
#include "rjp_internal.hpp" #include "object.hpp"
#include "integral.hpp"
#include "array.hpp"
#include "value.hpp"
#include <type_traits> //is_same, true_type, false_type #include <type_traits> //is_same, true_type, false_type
#include <utility> //forward #include <utility> //forward
#include <exception> #include <exception>

View File

@ -24,7 +24,6 @@
#include <rjp++/iterator.hpp> #include <rjp++/iterator.hpp>
#include <rjp++/member.hpp> #include <rjp++/member.hpp>
#include <rjp++/object.hpp> #include <rjp++/object.hpp>
#include <rjp++/rjp_internal.hpp>
#include <rjp++/string.hpp> #include <rjp++/string.hpp>
#include <rjp++/string_val.hpp> #include <rjp++/string_val.hpp>
#include <rjp++/value.hpp> #include <rjp++/value.hpp>