aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2021-05-06 20:45:04 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2021-05-06 20:46:46 -0400
commit003c7d1b27140d42c026c25fbca1cef545bfb5c7 (patch)
tree8d08a8ba841bc17ef34a5c9113146447016ab92d
parentc967ce981c2bedc23f0cd614ea7a3b108d009365 (diff)
downloadcleanpath-003c7d1b27140d42c026c25fbca1cef545bfb5c7.tar.gz
Remove underscore from project name, reorder calls
-rw-r--r--CMakeLists.txt4
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)