M
Size: a a a
M
M
M
M
M
M
add_library(govnolib src/govno.cpp)
target_include_directories(govnolib PUBLIC include) # чтобы инклуды пахали
add_executable(govno src/main.cpp)
target_link_libraries(govno govnolib) # линкусется к реализации и наследует инклуды
# tests
add_executable(govnotest test/test_govno.cpp)
target_link_libraries(govnotest govnolib)
M
M
M
M
M
M
M
M
M
m
M
M
M