Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LARN
PRRT
Commits
5d537ab2
Commit
5d537ab2
authored
Feb 19, 2016
by
Andreas Schmidt
Browse files
Introduce intermediate CMakeLists.txt.
parent
2544c8b0
Changes
2
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
5d537ab2
...
...
@@ -11,11 +11,5 @@ find_package (Threads)
include_directories
(
${
CMAKE_CURRENT_SOURCE_DIR
}
)
add_subdirectory
(
src/prrt
)
add_subdirectory
(
src/util
)
add_subdirectory
(
tests
)
add_executable
(
sender src/sender.c
)
add_executable
(
receiver src/receiver.c
)
target_link_libraries
(
sender LINK_PUBLIC PRRT UTIL
${
CMAKE_THREAD_LIBS_INIT
}
)
target_link_libraries
(
receiver LINK_PUBLIC PRRT UTIL
${
CMAKE_THREAD_LIBS_INIT
}
)
\ No newline at end of file
add_subdirectory
(
src
)
add_subdirectory
(
tests
)
\ No newline at end of file
src/CMakeLists.txt
0 → 100644
View file @
5d537ab2
add_subdirectory
(
prrt
)
add_subdirectory
(
util
)
add_executable
(
sender sender.c
)
add_executable
(
receiver receiver.c
)
target_link_libraries
(
sender LINK_PUBLIC PRRT UTIL
${
CMAKE_THREAD_LIBS_INIT
}
)
target_link_libraries
(
receiver LINK_PUBLIC PRRT UTIL
${
CMAKE_THREAD_LIBS_INIT
}
)
\ No newline at end of file
Write
Preview
Supports
Markdown
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