We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
In a nutshell it's code that serves functions. Libraries are used by Modules.
In config repos they are contained in external/libraries. Each library is contained in its own git repository.
The library's folder structure is standardized as followed:
Libraries should be suffixed with _lib. The include folder should contain a folder named after the library.
Example:
set ( SOURCES src/library_code.cpp ) set (HEADERS include/library/library_code.h ) include_directories(include) add_library(library_lib SHARED ${SOURCES} ${HEADERS}) target_link_libraries(library_lib PRIVATE lmscore)