Skip to content

Latest commit

 

History

History

library_1

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Summary

This example shows a minimal configuration for a C++ project yielding a library.

Build Instructions

Build a Static Library

mkdir build_library_1
cd build_library_1/
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=FALSE ../library_1
make

Build a Shared Library

mkdir build_library_1
cd build_library_1/
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=TRUE ../library_1
make

Hint: there are more options to be considered for building stuff, see the other examples.