diff --git a/cmake-modules/FindThirdPartyITPP.cmake b/cmake-modules/FindThirdPartyITPP.cmake index 7261a5655a8ff1d7d96a4f60c99782f47abf47ef..c3b19c4e4d4bbf3e3026197866c491dcd1dfbf01 100644 --- a/cmake-modules/FindThirdPartyITPP.cmake +++ b/cmake-modules/FindThirdPartyITPP.cmake @@ -50,7 +50,16 @@ ENDIF(WIN32) IF(UNIX) INCLUDE("FindThirdPartyPkgConfig") - pkg_check_modules(ITPP itpp) + FIND_PATH(PATH_ITPP include/itpp PATHS ${LIST_DEPENDENCIES_PATH}) + + IF(PATH_ITPP) + SET(ITPP_FOUND TRUE) + SET(ITPP_INCLUDE_DIRS ${PATH_ITPP}/include/) + SET(ITPP_LIBRARY_DIRS ${PATH_ITPP}/lib/) + SET(ITPP_LIBRARY_RELEASE libitpp.so) + ELSE() + pkg_check_modules(ITPP itpp) + ENDIF() ENDIF(UNIX) IF(ITPP_FOUND) diff --git a/plugins/processing/stimulation/src/box-algorithms/ovpCBoxAlgorithmLuaStimulator.h b/plugins/processing/stimulation/src/box-algorithms/ovpCBoxAlgorithmLuaStimulator.h index e43836d661445fcac9d98cfd741b75d8c4b26cf5..21e007d5171fbd2c2f97e869e439ad3da8126ff2 100644 --- a/plugins/processing/stimulation/src/box-algorithms/ovpCBoxAlgorithmLuaStimulator.h +++ b/plugins/processing/stimulation/src/box-algorithms/ovpCBoxAlgorithmLuaStimulator.h @@ -8,6 +8,7 @@ #include #include +#include #include #include diff --git a/scripts/linux-dependencies-fedora.txt b/scripts/linux-dependencies-fedora.txt new file mode 100644 index 0000000000000000000000000000000000000000..66c6f716cbfce8d461bd412749367984b2019213 --- /dev/null +++ b/scripts/linux-dependencies-fedora.txt @@ -0,0 +1,23 @@ +ogre-devel +wget +automake +autoconf +unzip +gcc-gfortran +gsl-devel +readline-devel +libtool +libXaw-devel +pcre-devel +freeimage-devel +mesa-libGL-devel +freealut-devel +libvorbis-devel +eigen3-devel +cegui-devel +ois-devel +compat-lua-devel +sqlite2-devel +fftw-devel +python3-devel +python3-numpy