git clone https://github.com/icsl-Jeon/simple-cmake-package.git
cd simple-cmake-package
mkdir build && cd build && cmake ..
make
sudo make install
cmake_minimum_required(VERSION 3.15.0)
project(client_project)
find_package(SimplePackage REQUIRED)
add_executable(client_project_executable main.cpp)
target_link_libraries(client_project_executable simple_package)
#include <first_class/FirstClass.hpp>
#include <second_class/SecondClass.hpp>
#include <iostream>
int main(int, char **) {
SecondClass second_class(7);
std::cout << "Hello, world! " << second_class.GetDecreasedVariable()
<< std::endl;
}