This is a small repository shows how to create very simple CMake projects.
- Open a terminal at in the build folder.
- Then enter:
cmake ..
- And then finally type:
make
- For installing files (for CMake-create-shared-library only), use:
sudo make install
CMake-basic-example contains an example of basic usage of CMake.
CMake-create-shared-library shows how to create a very simple shared library.
CMake-use-shared-library uses the library created and installed in the CMake-create-shared-library example.