Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
UERANSIM
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
UERANSIM
Commits
b4471da7
Commit
b4471da7
authored
Feb 11, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CLI executable added
parent
3ba4bd9d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
CMakeLists.txt
CMakeLists.txt
+7
-0
src/app/CMakeLists.txt
src/app/CMakeLists.txt
+1
-0
No files found.
CMakeLists.txt
View file @
b4471da7
...
...
@@ -66,3 +66,10 @@ add_library(devbnd SHARED src/binder.cpp)
target_compile_options
(
devbnd PRIVATE -D_GNU_SOURCE -Wall -Wextra
)
target_link_options
(
devbnd PRIVATE -nostartfiles
)
target_link_libraries
(
devbnd dl
)
#################### CLI EXECUTABLE ####################
add_executable
(
nr-cli src/cli.cpp
)
target_link_libraries
(
nr-cli pthread
)
target_compile_options
(
nr-cli PRIVATE -Wall -Wextra -pedantic
)
target_link_libraries
(
nr-cli utils
)
\ No newline at end of file
src/app/CMakeLists.txt
View file @
b4471da7
...
...
@@ -8,3 +8,4 @@ add_library(app ${HDR_FILES} ${SRC_FILES})
target_compile_options
(
app PRIVATE -Wall -Wextra -pedantic -Wno-unused-parameter
)
target_link_libraries
(
app utils
)
target_link_libraries
(
app udp
)
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