Symbol visibility tests

This commit is contained in:
2024-05-10 13:47:37 -07:00
parent f5920ba6c7
commit ba2b76cb13
11 changed files with 185 additions and 13 deletions

View File

@@ -2,6 +2,6 @@ add_library(nanobench ${CMAKE_CURRENT_SOURCE_DIR}/nanobench.cpp)
target_include_directories(nanobench SYSTEM
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include/nanobench)
add_library(xxhash ${CMAKE_CURRENT_SOURCE_DIR}/xxhash.c)
add_library(xxhash OBJECT ${CMAKE_CURRENT_SOURCE_DIR}/xxhash.c)
target_include_directories(xxhash SYSTEM
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include/xxhash)