diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-05-06 20:45:04 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-05-06 20:45:04 -0400 |
commit | dd3df00f9327b4318db4f22274093b9f8bb39217 (patch) | |
tree | 8d08a8ba841bc17ef34a5c9113146447016ab92d | |
parent | d922c7b79af29d2678921389c8e25f8130ba0c49 (diff) | |
download | cleanpath-windows.tar.gz |
Remove underscore from project name, reorder callswindows
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5929cff..cbeba46 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,8 @@ cmake_minimum_required(VERSION 3.0) -project(clean_path) +project(cleanpath) include(CheckIncludeFile) +include(CTest) set(CMAKE_C_STANDARD 99) set(LIB_SOURCES lib/cleanpath.c) @@ -14,7 +15,6 @@ configure_file ("${PROJECT_SOURCE_DIR}/config.h.in" include_directories(${PROJECT_BINARY_DIR}/include) include_directories(${CMAKE_SOURCE_DIR}/include) -include(CTest) enable_testing() add_subdirectory(tests) |