Set the optimization flag to Os for the rrc asn1 library

This commit is contained in:
Francisco Paisana 2019-05-03 13:05:19 +01:00 committed by Andre Puschmann
parent b04cb0deb9
commit 47ba5cd098
1 changed files with 2 additions and 0 deletions

View File

@ -33,4 +33,6 @@ add_library(rrc_asn1 STATIC
rrc_asn1_enum.cc
asn1_utils.cc
)
# Compile RRC ASN1 optimized for size
target_compile_options(rrc_asn1 PRIVATE "-Os")
install(TARGETS rrc_asn1 DESTINATION ${LIBRARY_DIR})