EPfaehler/RaCat

fatal error C1083: can't found file :“softwareParameters.h”: No such file or directory

Opened this issue · 0 comments

I use CMakelist:
"cmake_minimum_required(VERSION 2.8)
project(Radiomics)
SET (BOOST_ROOT F:/github/boost_1_61_0/boost_1_61_0)
SET (BOOST_LIBRARYDIR "F:/github/boost_1_61_0/boost_1_61_0/stage/lib")
SET (BOOST_MIN_VERSION "1.55.0")
set (Boost_NO_BOOST_CMAKE ON)
FIND_PACKAGE(Boost ${BOOST_MIN_VERSION} REQUIRED)
if (NOT Boost_FOUND)
message(FATAL_ERROR "Fatal error: Boost (version >= 1.55) required.")
else()
message(STATUS "Setting up BOOST")
message(STATUS " Library - ${Boost_LIBRARY_DIRS}")
include_directories(${Boost_INCLUDE_DIRS})
link_directories(${Boost_LIBRARY_DIRS})
endif (NOT Boost_FOUND)
find_package(ITK REQUIRED)
include(${ITK_USE_FILE})
add_executable(Radiomics MACOSX_BUNDLE F:/github/RaCat-master/RaCat-master/Code/main.cpp)
target_link_libraries(Radiomics
${Boost_LIBRARIES} ${Glue} ${VTK_LIBRARIES} ${ITK_LIBRARIES}) "

to generate and compile Radiomics.exe but failed.

F:\github\RaCat-master\RaCat-master\Code\main.cpp(5): fatal error C1083: can't found file :“softwareParameters.h”: No such file or directory

how to fix it?