You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
I am on windows and add some files locally without building as followings,
the cmakelist.txt are modified as :
project("DeepSDF")
cmake_minimum_required(VERSION 3.0)
find_package(Eigen3 REQUIRED)
#find_package(nanoflann REQUIRED)
#find_package(Pangolin REQUIRED)
add_subdirectory(third-party/cnpy)
set(SOURCES
src/ShaderProgram.cpp
src/Utils.cpp)
add_executable(PreprocessMesh src/PreprocessMesh.cpp ${SOURCES})
target_include_directories(PreprocessMesh PRIVATE third-party/cnpy)
target_link_libraries(PreprocessMesh PRIVATE cnpy Eigen3::Eigen)
target_compile_features(PreprocessMesh PRIVATE cxx_std_14)
set_target_properties(PreprocessMesh PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}/bin")
add_executable(SampleVisibleMeshSurface src/SampleVisibleMeshSurface.cpp ${SOURCES})
target_include_directories(SampleVisibleMeshSurface PRIVATE third-party/cnpy)
target_link_libraries(SampleVisibleMeshSurface PRIVATE cnpy Eigen3::Eigen)
target_compile_features(SampleVisibleMeshSurface PRIVATE cxx_std_14)
set_target_properties(SampleVisibleMeshSurface PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}/bin")
The cmake .. goes through withou errors,
but make produce nothing:
make: *** No targets specified and no makefile found. Stop.
THe cpp files are modified as:
#include "CLI11.hpp"
#include "C:/third_party_tools/Pangolin/include/pangolin/pangolin/geometry/geometry.h"
#include "C:/third_party_tools/Pangolin/include/pangolin/pangolingeometry/glgeometry.h"
#include "C:/third_party_tools/Pangolin/include/pangolin/pangolin/gl/gl.h"
#include "C:/third_party_tools/Pangolin/include/pangolin/pangolin/pangolin.h"
Do you known where I am wrong?
The text was updated successfully, but these errors were encountered: