diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..f5f22fe --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,9 @@ +cmake_minimum_required(VERSION 3.25.1) +project(test) + +include_directories(lib/) +add_library(printer STATIC lib/printer.h lib/printer.cpp) + +add_executable(main src/main.cpp) + +target_link_libraries(main printer)