1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-12-13 09:13:06 +00:00
openmw/extern/smhasher/CMakeLists.txt
AnyOldName3 f39ba9783a Mark extern library includes as SYSTEM
With CMake 3.25, there's a target property we could use to deal with this with a little less mess, but we use 3.16 right now.
2025-09-23 01:13:47 +01:00

3 lines
197 B
CMake

add_library(smhasher STATIC MurmurHash3.cpp include/smhasher/MurmurHash3.h)
target_include_directories(smhasher SYSTEM PUBLIC include)
target_include_directories(smhasher PRIVATE include/smhasher)