aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorMikhail Romanko <me@blankhex.com>2025-02-02 21:40:31 +0300
committerMikhail Romanko <me@blankhex.com>2025-02-02 21:40:31 +0300
commit586a9ace2182b55cd17fe3959871680e009c775e (patch)
tree6bf5d0218cd77532c0ef0f6ead36729aaf7bf955 /CMakeLists.txt
parentc89cf8f3165fa8c60b2d945716d071f390add973 (diff)
downloadbhlib-586a9ace2182b55cd17fe3959871680e009c775e.tar.gz
Change file naming
This is a follow-up to previous commit.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt28
1 files changed, 14 insertions, 14 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0e2a50c..7af2e78 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -66,20 +66,20 @@ endif(TESTING)
# Set library code
set(BH_SOURCE
- src/algo.c
- src/hashmap.c
- src/io.c
- src/math.c
- src/queue.c
+ src/Algo.c
+ src/Hashmap.c
+ src/IO.c
+ src/Math.c
+ src/Queue.c
)
set(BH_HEADER
- include/bh/common.h
- include/bh/algo.h
- include/bh/hashmap.h
- include/bh/io.h
- include/bh/math.h
- include/bh/queue.h
+ include/BH/Common.h
+ include/BH/Algo.h
+ include/BH/Hashmap.h
+ include/BH/IO.h
+ include/BH/Math.h
+ include/BH/Queue.h
)
set(BH_INCLUDE_DIRS
@@ -93,21 +93,21 @@ if(WIN32)
# Add platform dependent files
list(APPEND BH_SOURCE
- src/win32/file.c
+ src/win32/File.c
)
elseif(UNIX)
message(STATUS "Platform: Unix (Linux/BSD/MacOS X)")
# Add platform dependent files
list(APPEND BH_SOURCE
- src/posix/file.c
+ src/posix/File.c
)
else()
message(STATUS "Platform: Unknown")
# Add platform dependent files
list(APPEND BH_SOURCE
- src/dummy/file.c
+ src/dummy/File.c
)
endif()