diff options
| author | Mikhail Romanko <me@blankhex.com> | 2025-02-03 10:56:40 +0300 |
|---|---|---|
| committer | Mikhail Romanko <me@blankhex.com> | 2025-02-03 10:56:40 +0300 |
| commit | c34a24c2a4d226de2463cc4a72079f6841f06a39 (patch) | |
| tree | 7faf536b7b7d6f6e9ca20a5ef6e1f4e7d9a72684 /unit/CMakeLists.txt | |
| parent | f86f1f4f742a4f611b918811ce787d16fbf33593 (diff) | |
| download | bhlib-c34a24c2a4d226de2463cc4a72079f6841f06a39.tar.gz | |
Fix naming in CMakeLists.txt
Diffstat (limited to 'unit/CMakeLists.txt')
| -rw-r--r-- | unit/CMakeLists.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/unit/CMakeLists.txt b/unit/CMakeLists.txt index 42e9ffb..fb95ff0 100644 --- a/unit/CMakeLists.txt +++ b/unit/CMakeLists.txt @@ -18,12 +18,12 @@ set(BHUNIT_HEADER ) # Library -add_library(bhunit STATIC ${BHUNIT_SOURCE} ${BHUNIT_HEADER}) -target_include_directories(bhunit PUBLIC include) +add_library(BHUnit STATIC ${BHUNIT_SOURCE} ${BHUNIT_HEADER}) +target_include_directories(BHUnit PUBLIC include) # Enable all compiler warnings if(MSVC) - target_compile_options(bhunit PRIVATE /W4 /WX) + target_compile_options(BHUnit PRIVATE /W4 /WX) else() - target_compile_options(bhunit PRIVATE -Wall -Wextra -Wpedantic -Werror -fstrict-aliasing) -endif()
\ No newline at end of file + target_compile_options(BHUnit PRIVATE -Wall -Wextra -Wpedantic -Werror -fstrict-aliasing) +endif() |
