1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
add_library("kstd" STATIC) add_library("libs::kstd" ALIAS "kstd") target_sources("kstd" PRIVATE "src/mutex.cpp" ) target_sources("kstd" PUBLIC FILE_SET HEADERS BASE_DIRS "include" FILES "include/kstd/mutex.hpp" ) target_include_directories("kstd" PUBLIC "include" )