Tons of build updates

This commit is contained in:
Guilhem Lavaux 2016-11-26 21:30:44 +01:00
parent 9ef2b008b0
commit c61daed876
8 changed files with 81 additions and 44 deletions

View file

@ -43,9 +43,6 @@ if (HDF5_FOUND)
add_executable(testHDF5 testHDF5.cpp)
target_link_libraries(testHDF5 ${tolink})
add_executable(gadgetToArray gadgetToArray.cpp)
target_link_libraries(gadgetToArray ${tolink})
add_executable(graficToDensity graficToDensity.cpp)
target_link_libraries(graficToDensity ${tolink})
endif (HDF5_FOUND)
@ -94,6 +91,10 @@ if (Boost_FOUND)
add_executable(simple3DFilter simple3DFilter.cpp)
target_link_libraries(simple3DFilter ${tolink})
ENDIF (YORICK_SUPPORT)
if (HDF5_FOUND)
add_executable(gadgetToArray gadgetToArray.cpp)
target_link_libraries(gadgetToArray ${tolink})
endif()
endif (Boost_FOUND)
IF (ENABLE_OPENMP AND YORICK_SUPPORT)

View file

@ -33,6 +33,7 @@ The fact that you are presently reading this means that you have had
knowledge of the CeCILL license and that you accept its terms.
+*/
#include <cmath>
#include <algorithm>
#include <iostream>
#include <cstdlib>
#include "cic.hpp"

View file

@ -33,8 +33,8 @@ The fact that you are presently reading this means that you have had
knowledge of the CeCILL license and that you accept its terms.
+*/
#include <iostream>
#include <H5Cpp.h>
#include "hdf5_array.hpp"
#include <H5Cpp.h>
using namespace std;