From bedd420e7fa6275154e9c90f6a2d3a7ada8718fe Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Mal=C3=BD?= Date: Thu, 11 May 2017 11:50:45 +0200 Subject: [PATCH] Use consistent upper-case naming for all source and include files --- CMakeLists.txt | 4 ++-- include/{libhpcs.h => libHPCS.h} | 0 libhpcs.c => libHPCS.c | 4 ++-- libhpcs_p.h => libHPCS_p.h | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename include/{libhpcs.h => libHPCS.h} (100%) rename libhpcs.c => libHPCS.c (99%) rename libhpcs_p.h => libHPCS_p.h (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6cbbf52..ef9d95f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,7 +26,7 @@ else() endif() set(libHPCS_SRCS - libhpcs.c) + libHPCS.c) include_directories( ${CMAKE_CURRENT_SOURCE_DIR} @@ -37,7 +37,7 @@ target_link_libraries(HPCS PRIVATE ${ICU_LIBRARIES}) set_target_properties(HPCS PROPERTIES VERSION 5.0 SOVERSION 5.0 - PUBLIC_HEADER "${PROJECT_SOURCE_DIR}/include/libhpcs.h") + PUBLIC_HEADER "${PROJECT_SOURCE_DIR}/include/libHPCS.h") install(TARGETS HPCS LIBRARY DESTINATION lib PUBLIC_HEADER DESTINATION include) diff --git a/include/libhpcs.h b/include/libHPCS.h similarity index 100% rename from include/libhpcs.h rename to include/libHPCS.h diff --git a/libhpcs.c b/libHPCS.c similarity index 99% rename from libhpcs.c rename to libHPCS.c index 881fcdd..bf724bc 100644 --- a/libhpcs.c +++ b/libHPCS.c @@ -2,8 +2,8 @@ extern "C" { #endif -#include "include/libhpcs.h" -#include "libhpcs_p.h" +#include "include/libHPCS.h" +#include "libHPCS_p.h" #ifdef _WIN32 #include diff --git a/libhpcs_p.h b/libHPCS_p.h similarity index 100% rename from libhpcs_p.h rename to libHPCS_p.h -- 2.43.5