diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b135103..fc500ab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ endif() project(libfud VERSION 1.0.0 - DESCRIPTION "The Standard Library Extended and Exception Free" + DESCRIPTION "Library of FUD" LANGUAGES CXX C) set(CXX_CPPCHECK "project=build/compile_commands.json;enable=information;force") @@ -15,10 +15,11 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS true) add_library(libfud SHARED source/libfud.cpp - source/c_file.cpp - source/string.cpp - source/utf8.cpp - source/utf8_iterator.cpp + source/fud_memory.cpp + source/fud_c_file.cpp + source/fud_string.cpp + source/fud_utf8.cpp + source/fud_utf8_iterator.cpp ) target_compile_options(libfud PRIVATE ${FUD_WARNINGS}) @@ -35,7 +36,6 @@ set_target_properties( if (FUD_TEST) add_subdirectory(test) -add_subdirectory(examples) endif () if (FUD_DOC) |