Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
O
openfpm_io
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openfpm
openfpm_io
Commits
14dae8cc
Commit
14dae8cc
authored
Feb 28, 2021
by
incardon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing COMPONENT
parent
5d079c69
Pipeline
#2813
passed with stages
in 5 minutes and 45 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
10 deletions
+25
-10
src/CMakeLists.txt
src/CMakeLists.txt
+25
-10
No files found.
src/CMakeLists.txt
View file @
14dae8cc
...
...
@@ -6,6 +6,7 @@ if (CUDA_ON_CPU)
add_definitions
(
-DCUDA_ON_CPU
)
endif
()
add_executable
(
io main.cpp
MetaParser/MetaParser_unit_test.cpp
HDF5_wr/HDF5_writer_cuda.cu
...
...
@@ -21,6 +22,10 @@ if ( CMAKE_COMPILER_IS_GNUCC )
endif
()
endif
()
if
(
CMAKE_CUDA_COMPILER_ID STREQUAL
"Clang"
)
add_definitions
(
-D__STRICT_ANSI__
)
endif
()
###########################
if
(
CUDA_FOUND
)
...
...
@@ -73,18 +78,22 @@ endif()
install
(
FILES RawReader/RawReader.hpp
RawReader/RawReader_unit_tests.hpp
DESTINATION openfpm_io/include/RawReader
)
DESTINATION openfpm_io/include/RawReader
COMPONENT OpenFPM
)
install
(
FILES CSVWriter/csv_multiarray.hpp
CSVWriter/CSVWriter.hpp
CSVWriter/is_csv_writable.hpp
DESTINATION openfpm_io/include/CSVWriter/
)
DESTINATION openfpm_io/include/CSVWriter/
COMPONENT OpenFPM
)
install
(
FILES GraphMLWriter/GraphMLWriter.hpp
DESTINATION openfpm_io/include/GraphMLWriter
)
DESTINATION openfpm_io/include/GraphMLWriter
COMPONENT OpenFPM
)
install
(
FILES util/util.hpp util/GBoxes.hpp
DESTINATION openfpm_io/include/util
)
DESTINATION openfpm_io/include/util
COMPONENT OpenFPM
)
install
(
FILES VTKWriter/VTKWriter.hpp
VTKWriter/byteswap_portable.hpp
...
...
@@ -96,10 +105,12 @@ install(FILES VTKWriter/VTKWriter.hpp
VTKWriter/VTKWriter_grids_util.hpp
VTKWriter/VTKWriter_vector_box.hpp
VTKWriter/is_vtk_writable.hpp
DESTINATION openfpm_io/include/VTKWriter/
)
DESTINATION openfpm_io/include/VTKWriter/
COMPONENT OpenFPM
)
install
(
FILES MetaParser/MetaParser.hpp
DESTINATION openfpm_io/include/MetaParser/
)
DESTINATION openfpm_io/include/MetaParser/
COMPONENT OpenFPM
)
install
(
FILES HDF5_wr/HDF5_wr.hpp
HDF5_wr/HDF5_writer.hpp
...
...
@@ -108,16 +119,20 @@ install(FILES HDF5_wr/HDF5_wr.hpp
HDF5_wr/HDF5_reader_gd.hpp
HDF5_wr/HDF5_reader.hpp
HDF5_wr/HDF5_reader_vd.hpp
DESTINATION openfpm_io/include/HDF5_wr
)
DESTINATION openfpm_io/include/HDF5_wr
COMPONENT OpenFPM
)
install
(
FILES RawReader/InitGridWithPixel.hpp
DESTINATION openfpm_io/include/RawReader/
)
DESTINATION openfpm_io/include/RawReader/
COMPONENT OpenFPM
)
install
(
FILES util/PathsAndFiles.hpp
DESTINATION openfpm_io/include/util
)
DESTINATION openfpm_io/include/util
COMPONENT OpenFPM
)
install
(
FILES Plot/GoogleChart.hpp Plot/util.hpp
DESTINATION openfpm_io/include/Plot
)
DESTINATION openfpm_io/include/Plot
COMPONENT OpenFPM
)
#if(BUILD_TESTING)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment