-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Allow libeuicc to be installed as a dynamic library (#57)
...based on option LPAC_DYNAMIC_LIBEUICC, defaults to OFF. This makes it possible to use libeuicc on Linux without submoduling. Note that this would require any future breaking change to increment the MAJOR version of the project in the main CMakeLists.txt. This version number is now a public interface and must be maintained. As part of this commit, I have modified the version code in CMakeLists to match the current release version.
- Loading branch information
Showing
3 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,26 @@ | ||
option(LPAC_DYNAMIC_LIBEUICC "Build and install libeuicc as a dynamic library" OFF) | ||
aux_source_directory(${CMAKE_CURRENT_SOURCE_DIR} LIB_EUICC_SRCS) | ||
add_library(euicc STATIC ${LIB_EUICC_SRCS}) | ||
if(LPAC_DYNAMIC_LIBEUICC) | ||
add_library(euicc SHARED ${LIB_EUICC_SRCS}) | ||
else() | ||
add_library(euicc STATIC ${LIB_EUICC_SRCS}) | ||
endif() | ||
target_link_libraries(euicc cjson-static) | ||
target_include_directories(euicc PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/..>) | ||
if(LPAC_DYNAMIC_LIBEUICC) | ||
# Install headers | ||
file(GLOB ALL_HEADERS "*.h") | ||
foreach(header ${ALL_HEADERS}) | ||
if(${header} MATCHES "^.*\.private\.h$") | ||
list(REMOVE_ITEM ALL_HEADERS ${header}) | ||
endif() | ||
endforeach() | ||
set_target_properties(euicc PROPERTIES PUBLIC_HEADER "${ALL_HEADERS}") | ||
# Install a pkg-config file | ||
configure_file(libeuicc.pc.in libeuicc.pc @ONLY) | ||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libeuicc.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) | ||
# Configure libeuicc.so installation | ||
set_target_properties(euicc PROPERTIES SOVERSION ${PROJECT_VERSION_MAJOR}) | ||
install(TARGETS euicc LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} | ||
PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/euicc) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
prefix="@CMAKE_INSTALL_PREFIX@" | ||
exec_prefix="${prefix}" | ||
libdir="${prefix}/lib" | ||
includedir="${prefix}/include" | ||
|
||
Name: libeuicc | ||
Description: Library to manipuate eUICC (eSIM) cards | ||
Version: @PROJECT_VERSION@ | ||
Cflags: -I${includedir} | ||
Libs: -L${libdir} -leuicc |