Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 562 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 562 Bytes

Sample app

Building the app

If you haven't built your docker image, just visit the docker readme.

To run the application, taking {REPO_PATH} as the base repository path, run the following:

cd {REPO_PATH}/course
mkdir build
cd build
cmake ..
make
./cpp_course

To change the library name

Just go to {REPO_PATH}/CMakeLists.txt and replace, in add_library macro, foo by your library_name.

To add new source files

Just go to {REPO_PATH}/CMakeLists.txt and add, under LIBRARY_SOURCES, your new file.