File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -51,10 +51,10 @@ endif()
51
51
set (StochTree_HEADER_DIR ${PROJECT_SOURCE_DIR} /include )
52
52
53
53
# boost.math header file directory
54
- set (BOOSTMATH_HEADER_DIR ${PROJECT_SOURCE_DIR} /dependencies /boost_math/include )
54
+ set (BOOSTMATH_HEADER_DIR ${PROJECT_SOURCE_DIR} /deps /boost_math/include )
55
55
56
56
# Eigen header file directory
57
- set (EIGEN_HEADER_DIR ${PROJECT_SOURCE_DIR} /dependencies /eigen)
57
+ set (EIGEN_HEADER_DIR ${PROJECT_SOURCE_DIR} /deps /eigen)
58
58
59
59
# Library directory
60
60
set (LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR} /build )
@@ -87,7 +87,7 @@ endif()
87
87
# Python shared library
88
88
if (BUILD_PYTHON)
89
89
# Add pybind11 module
90
- add_subdirectory (dependencies /pybind11)
90
+ add_subdirectory (deps /pybind11)
91
91
pybind11_add_module(stochtree_cpp src/py_stochtree.cpp)
92
92
93
93
# Link to C++ source and headers
Original file line number Diff line number Diff line change 28
28
#include < vector>
29
29
30
30
#define FMT_HEADER_ONLY
31
- #include " ../../dependencies /fast_double_parser/include/fast_double_parser.h"
32
- #include " ../../dependencies /fmt/include/fmt/format.h"
31
+ #include " ../../deps /fast_double_parser/include/fast_double_parser.h"
32
+ #include " ../../deps /fmt/include/fmt/format.h"
33
33
34
34
#ifdef _MSC_VER
35
35
#include < intrin.h>
Original file line number Diff line number Diff line change 1
1
# package root
2
2
PKGROOT=..
3
3
4
- PKG_CPPFLAGS= -I$(PKGROOT)/include -I$(PKGROOT)/dependencies /boost_math/include -I$(PKGROOT)/dependencies /eigen
4
+ PKG_CPPFLAGS= -I$(PKGROOT)/include -I$(PKGROOT)/deps /boost_math/include -I$(PKGROOT)/deps /eigen
5
5
6
6
CXX_STD=CXX17
7
7
You can’t perform that action at this time.
0 commit comments