Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
Michael Black
OpenXG-RAN
Commits
35d5c432
Commit
35d5c432
authored
Nov 28, 2022
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Always trigger ASN.1 compilation at beginning
parent
34424c77
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
7 deletions
+14
-7
CMakeLists.txt
CMakeLists.txt
+14
-7
No files found.
CMakeLists.txt
View file @
35d5c432
...
...
@@ -362,13 +362,20 @@ endif()
##################################################
# ASN.1 grammar C code generation & dependencies #
##################################################
# A difficulty: asn1c generates C code of a un-predictable list of files
# so, generate the c from asn1c once at cmake run time
# So, if someone modify the asn.1 source file in such as way that it will create
# (so creating new asn.1 objects instead of modifying the object attributes)
# New C code source file, cmake must be re-run (instead of re-running make only)
#############
set
(
asn1_generated_dir
${
OPENAIR_BIN_DIR
}
)
# this custom target regroups all ASN.1 generation/compilation targets
# add_custom_target is always considered out-of-date, and will always force the
# generation of all ASN.1 definitions
add_custom_target
(
asn1
)
add_dependencies
(
asn1
asn1_lte_rrc
asn1_nr_rrc
asn1_s1ap
asn1_ngap
asn1_m2ap
asn1_m3ap
asn1_x2ap
asn1_f1ap
asn1_lpp
)
# RRC
######
...
...
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