aboutsummaryrefslogtreecommitdiff
path: root/unit/CMakeLists.txt
diff options
context:
space:
mode:
authorMikhail Romanko <me@blankhex.com>2025-02-28 21:44:01 +0300
committerMikhail Romanko <me@blankhex.com>2025-02-28 21:44:22 +0300
commita2d0913c79880e2bf70539015686bab40108fb0d (patch)
tree9445732b7bb33f7691275605f72f44d8d7afbe01 /unit/CMakeLists.txt
parent93033ebc99442038ab137710bbd4014a249e75c8 (diff)
downloadbhlib-a2d0913c79880e2bf70539015686bab40108fb0d.tar.gz
Add utils for working with endianness, more documentation, refactor CMake
Decided to update the docs, as well as adding few new features and small refactoring.
Diffstat (limited to 'unit/CMakeLists.txt')
-rw-r--r--unit/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/unit/CMakeLists.txt b/unit/CMakeLists.txt
index fb95ff0..601b70d 100644
--- a/unit/CMakeLists.txt
+++ b/unit/CMakeLists.txt
@@ -23,7 +23,7 @@ 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)
+ target_compile_options(BHUnit PRIVATE -Wall -Wextra -Wpedantic -Werror -fstrict-aliasing)
endif()