Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
psrdada_cpp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tobias Winchen
psrdada_cpp
Commits
c0640e6e
Commit
c0640e6e
authored
7 years ago
by
root
Browse files
Options
Downloads
Patches
Plain Diff
Added header files to include targets
parent
a4f17994
Branches
Branches containing commit
Tags
v0.1
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
psrdada_cpp/CMakeLists.txt
+21
-2
21 additions, 2 deletions
psrdada_cpp/CMakeLists.txt
with
21 additions
and
2 deletions
psrdada_cpp/CMakeLists.txt
+
21
−
2
View file @
c0640e6e
...
...
@@ -16,6 +16,19 @@ set(psrdada_cpp_src
src/cli_utils.cpp
)
set
(
psrdada_cpp_inc
cli_utils.hpp
dada_client_base.hpp
dada_io_loop.hpp
dada_io_loop_writer.hpp
dada_read_client.hpp
multilog.hpp
common.hpp
dada_io_loop_reader.hpp
dada_write_client.hpp
raw_bytes.hpp
)
# -- the main library target
add_library
(
${
CMAKE_PROJECT_NAME
}
${
psrdada_cpp_src
}
)
...
...
@@ -27,5 +40,11 @@ target_link_libraries (junkdb ${PSRDADA_CPP_LIBRARIES})
add_executable
(
dbnull examples/dbnull.cpp
)
target_link_libraries
(
dbnull
${
PSRDADA_CPP_LIBRARIES
}
)
install
(
TARGETS junkdb dbnull DESTINATION bin
)
#install (FILES MathFunctions.h DESTINATION include)
\ No newline at end of file
#install (TARGETS junkdb dbnull DESTINATION bin)
#install (FILES MathFunctions.h DESTINATION include)
install
(
TARGETS
${
CMAKE_PROJECT_NAME
}
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)
install
(
FILES
${
psrdada_cpp_inc
}
DESTINATION include/psrdada_cpp
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment