From: Michal MalĂ˝ Date: Thu, 11 May 2017 09:50:45 +0000 (+0200) Subject: Use consistent upper-case naming for all source and include files X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=bedd420e7fa6275154e9c90f6a2d3a7ada8718fe;p=libHPCS.git Use consistent upper-case naming for all source and include files --- 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