Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
20DM committed Oct 2, 2023
1 parent c194240 commit 75bdbef
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
sudo apt update
sudo apt install openmpi-bin libopenmpi-dev casacore-dev doxygen graphviz
if [[ "$USE_CONAN" = 0 ]]; then
ls ${{github.workspace}}
sudo apt install libeigen3-dev libspdlog-dev libtiff-dev libcfitsio-dev
sudo apt install libbenchmark-dev libboost-all-dev libyaml-cpp-dev
git clone https://github.com/catchorg/Catch2.git -b v3.4.0
Expand Down Expand Up @@ -118,7 +117,7 @@ jobs:
export CMAKE_PREFIX_PATH=${{github.workspace}}/cppflow/build:$CMAKE_PREFIX_PATH
export CMAKE_PREFIX_PATH=${{github.workspace}}/fftw-3.3.10/build/lib/cmake:$CMAKE_PREFIX_PATH
export CMAKE_PREFIX_PATH=${{github.workspace}}/Catch2/build/lib/cmake:$CMAKE_PREFIX_PATH
export CMAKE_PREFIX_PATH=${{github.workspace}}/sopt/build:$CMAKE_PREFIX_PATH
#export CMAKE_PREFIX_PATH=${{github.workspace}}/sopt/build:$CMAKE_PREFIX_PATH
cd ${{github.workspace}}/build
make -j$(nproc --ignore 1) install
fi
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ option(coverage "Build coverage" off)
option(cppflow "Build with TensorFlow interface" off)

if(NOT CMAKE_BUILD_TYPE)
message(STATUS "Setting build type to 'Relese' as none was specified.")
message(STATUS "Setting build type to 'Release' as none was specified.")
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build Type" FORCE)
endif()
message(STATUS "Building purify in ${CMAKE_BUILD_TYPE} mode")
Expand Down
3 changes: 2 additions & 1 deletion cpp/purify/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,15 @@ endif()
# $<INSTALL_INTERFACE:sopt/include/>
#)

message(STATUS "soptINC=${sopt_INCLUDE_DIR}")
add_include_dir(
${EIGEN3_INCLUDE_DIR}
${Boost_INCLUDE_DIR}
${cfitsio_INCLUDE_DIR}
${YAML_CPP_INCLUDE_DIR}
${Cubature_INCLUDE_DIR}
${CImg_INCLUDE_DIR}
#${sopt_INCLUDE_DIR}
${sopt_INCLUDE_DIR}
)

target_link_libraries(libpurify
Expand Down

0 comments on commit 75bdbef

Please sign in to comment.