libcruft-util/CMakeLists.txt

567 lines
13 KiB
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.7.0)
project(util-cruft LANGUAGES CXX C)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
include(nc)
2017-01-17 19:20:30 +11:00
include(CheckFunctionExists)
include(CheckCXXCompilerFlag)
include (search_libs)
find_package (PythonInterp 3 REQUIRED)
find_package (RAGEL 6.9 REQUIRED)
2017-01-17 19:20:30 +11:00
###############################################################################
include (TestBigEndian)
TEST_BIG_ENDIAN(ENDIANNESS)
if (ENDIANNESS)
add_definitions(-DWORDS_BIGENDIAN)
endif()
###############################################################################
RAGEL_TARGET(uri uri.cpp.rl ${CMAKE_CURRENT_BINARY_DIR}/uri.cpp COMPILE_FLAGS -G2)
RAGEL_TARGET(version version.cpp.rl ${CMAKE_CURRENT_BINARY_DIR}/version.cpp)
RAGEL_TARGET(format.cpp format.cpp.rl ${CMAKE_CURRENT_BINARY_DIR}/format.cpp)
2018-01-01 15:47:41 +11:00
RAGEL_TARGET(parse8601 time/parse8601.cpp.rl ${CMAKE_CURRENT_BINARY_DIR}/time/parse8601.cpp)
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
2017-01-17 19:20:30 +11:00
###############################################################################
set (UTIL_FILES)
###############################################################################
search_libs (BACKTRACE_LIB backtrace execinfo)
search_libs (DBGHELP_LIB SymFromAddr dbghelp)
check_function_exists (RtlCaptureStackBackTrace HAVE_CAPTURESTACKBACKTRACE)
2017-01-17 19:20:30 +11:00
##-----------------------------------------------------------------------------
if (BACKTRACE_LIB_FOUND)
list (APPEND UTIL_FILES backtrace_execinfo.cpp)
elseif (HAVE_CAPTURESTACKBACKTRACE)
list (APPEND UTIL_FILES backtrace_stackwalk.cpp)
else ()
list (APPEND UTIL_FILES backtrace_null.cpp)
2017-01-17 19:20:30 +11:00
endif ()
##-----------------------------------------------------------------------------
if (NOT WIN32)
find_program(ADDR2LINE NAMES addr2line)
if (ADDR2LINE)
add_definitions(-DADDR2LINE="${ADDR2LINE}")
endif()
endif ()
2017-01-17 19:20:30 +11:00
###############################################################################
# Platform wrappers
if (LINUX)
list (APPEND UTIL_FILES exe_linux.cpp)
elseif (FREEBSD)
list (APPEND UTIL_FILES exe_freebsd.cpp)
elseif (WIN32)
list (APPEND UTIL_FILES exe_win32.cpp)
2017-01-17 19:20:30 +11:00
else ()
message (FATAL_ERROR "unhandled platform")
endif ()
###############################################################################
# platform wrappers
list (
APPEND UTIL_FILES
posix/dir.cpp
posix/dir.hpp
posix/except.cpp
posix/except.hpp
2017-01-17 19:20:30 +11:00
posix/fd.cpp
posix/fd.hpp
posix/socket.cpp
posix/socket.hpp
2017-01-17 19:20:30 +11:00
)
2017-01-23 21:48:44 +11:00
##-----------------------------------------------------------------------------
if (LINUX)
list (APPEND UTIL_FILES
thread/event_linux.cpp
thread/flag_linux.cpp
thread/semaphore_linux.cpp
)
endif ()
##-----------------------------------------------------------------------------
2017-01-17 19:20:30 +11:00
if (NOT WINDOWS)
list (
APPEND UTIL_FILES
memory/buffer/circular.cpp
memory/buffer/circular.hpp
memory/buffer/paged.cpp
memory/buffer/paged.hpp
memory/system.cpp
memory/system.hpp
debug_posix.cpp
io_posix.cpp
io_posix.hpp
library_posix.hpp
library_posix.cpp
posix/fwd.hpp
posix/map.cpp
posix/map.hpp
time_posix.cpp
)
endif ()
##-----------------------------------------------------------------------------
if (WINDOWS)
list (
APPEND UTIL_FILES
debug_win32.cpp
exe_win32.cpp
io_win32.cpp
io_win32.hpp
thread/event_win32.cpp
thread/flag_win32.cpp
thread/semaphore_win32.cpp
2017-01-17 19:20:30 +11:00
library_win32.cpp
2018-03-14 15:22:45 +11:00
library_win32.hpp
2017-01-17 19:20:30 +11:00
time_win32.cpp
win32/except.cpp
win32/except.hpp
2017-01-17 19:20:30 +11:00
win32/handle.cpp
win32/handle.hpp
win32/registry.cpp
2018-03-14 15:22:45 +11:00
win32/registry.hpp
2017-01-17 19:20:30 +11:00
)
endif ()
###############################################################################
# Common files
list (
APPEND UTIL_FILES
adapter.hpp
adapter.cpp
algo/sort.cpp
algo/sort.hpp
2017-01-17 19:20:30 +11:00
alloc/fwd.hpp
alloc/allocator.cpp
alloc/allocator.hpp
alloc/arena.cpp
alloc/arena.hpp
alloc/forwarding.cpp
alloc/forwarding.hpp
alloc/raw/traits.hpp
alloc/raw/affix.cpp
alloc/raw/affix.hpp
alloc/raw/aligned/direct.hpp
alloc/raw/aligned/foreign.hpp
#alloc/raw/dynamic.hpp
alloc/raw/fallback.cpp
alloc/raw/fallback.hpp
alloc/raw/linear.cpp
alloc/raw/linear.hpp
alloc/raw/malloc.cpp
alloc/raw/malloc.hpp
alloc/raw/null.cpp
alloc/raw/null.hpp
alloc/raw/stack.cpp
alloc/raw/stack.hpp
2017-01-17 19:20:30 +11:00
annotation.hpp
ascii.hpp
backtrace.hpp
bezier.cpp
bezier1.cpp
bezier2.cpp
bezier3.cpp
bezier.hpp
bitwise.cpp
bitwise.hpp
cast.hpp
cmdopt.cpp
cmdopt.hpp
colour.cpp
colour.hpp
coord/fwd.hpp
coord/base.hpp
coord.hpp
coord/init.hpp
coord/iostream.hpp
coord/ops.hpp
2018-03-22 16:10:06 +11:00
coord/simd.cpp
2018-03-16 11:10:44 +11:00
coord/simd.hpp
coord/simd_sse.hpp
coord/simd_neon.hpp
2017-01-17 19:20:30 +11:00
coord/store.hpp
coord/traits.hpp
2018-04-01 14:49:10 +10:00
cpp.cpp
cpp.hpp
cpuid.cpp
cpuid.hpp
cpuid_x86.cpp
cpuid_x86.hpp
2017-01-17 19:20:30 +11:00
debug.cpp
debug.hpp
encode/base.cpp
encode/base.hpp
2017-01-17 19:20:30 +11:00
endian.cpp
endian.hpp
exe.hpp
extent.cpp
extent.hpp
fixed.cpp
fixed.hpp
float.cpp
float.hpp
${CMAKE_CURRENT_BINARY_DIR}/format.cpp
2017-01-17 19:20:30 +11:00
format.hpp
fourcc.cpp
fourcc.hpp
2018-04-27 16:32:58 +10:00
functor.hpp
2017-01-17 19:20:30 +11:00
geom/fwd.hpp
geom/aabb.cpp
geom/aabb.hpp
geom/cylinder.cpp
geom/cylinder.hpp
geom/ellipse.cpp
geom/ellipse.hpp
2018-03-13 22:37:40 +11:00
geom/frustum.cpp
geom/frustum.hpp
2017-01-17 19:20:30 +11:00
geom/iostream.cpp
geom/iostream.hpp
2018-04-20 15:04:54 +10:00
geom/line.hpp
geom/line.cpp
2017-01-17 19:20:30 +11:00
geom/ops.hpp
geom/plane.cpp
geom/plane.hpp
geom/ray.cpp
geom/ray.hpp
geom/rect.cpp
geom/rect.hpp
geom/sample.cpp
2017-01-17 19:20:30 +11:00
geom/sample.hpp
geom/segment.cpp
geom/segment.hpp
2017-01-17 19:20:30 +11:00
geom/sphere.cpp
geom/sphere.hpp
geom/tri.cpp
geom/tri.hpp
hash.hpp
hash/fwd.hpp
hash/adler.cpp
hash/adler.hpp
hash/bsdsum.cpp
hash/bsdsum.hpp
hash/crc.cpp
hash/crc.hpp
hash/fasthash.cpp
hash/fasthash.hpp
hash/fletcher.cpp
hash/fletcher.hpp
hash/fnv1a.cpp
hash/fnv1a.hpp
hash/murmur/common.cpp
hash/murmur/common.hpp
hash/murmur.hpp
hash/murmur/murmur1.cpp
hash/murmur/murmur1.hpp
hash/murmur/murmur2.cpp
hash/murmur/murmur2.hpp
hash/murmur/murmur3.cpp
hash/murmur/murmur3.hpp
2018-01-19 11:31:12 +11:00
hash/siphash.cpp
hash/siphash.hpp
2017-01-17 19:20:30 +11:00
hash/wang.hpp
hash/xxhash.cpp
hash/xxhash.hpp
introspection.cpp
introspection.hpp
io.cpp
io.hpp
iterator.hpp
2018-03-20 15:01:23 +11:00
job/fwd.hpp
job/dispatch.hpp
job/queue.cpp
job/queue.hpp
2018-04-18 21:48:24 +10:00
kmeans.hpp
2017-01-17 19:20:30 +11:00
library.hpp
log.cpp
log.hpp
maths.cpp
maths.hpp
2018-03-20 13:33:07 +11:00
maths/fast.hpp
2017-01-17 19:20:30 +11:00
matrix.cpp
matrix2.cpp
matrix3.cpp
matrix4.cpp
matrix.hpp
memory/deleter.cpp
memory/deleter.hpp
nocopy.hpp
parallel/queue.cpp
parallel/queue.hpp
parse.cpp
parse.hpp
2017-01-17 19:20:30 +11:00
pascal.cpp
pascal.hpp
platform.hpp
point.cpp
point.hpp
pointer.hpp
polynomial.cpp
polynomial.hpp
pool.cpp
pool.hpp
2018-05-03 18:32:08 +10:00
"${CMAKE_CURRENT_SOURCE_DIR}/preprocessor.hpp"
2017-01-17 19:20:30 +11:00
quaternion.cpp
quaternion.hpp
rand/lcg.cpp
rand/lcg.hpp
rand/xorshift.cpp
rand/xorshift.hpp
rand/mwc64x.cpp
rand/mwc64x.hpp
random.cpp
random.hpp
range.cpp
range.hpp
rational.cpp
rational.hpp
region.cpp
region.hpp
roots/bisection.hpp
sarray.cpp
sarray.hpp
scoped.hpp
2017-01-17 19:20:30 +11:00
si.cpp
signal.cpp
signal.hpp
si.hpp
2018-03-22 15:06:48 +11:00
singleton.hpp
2017-01-17 19:20:30 +11:00
stats.cpp
stats.hpp
2018-06-03 15:25:17 +10:00
std.hpp
2017-01-17 19:20:30 +11:00
stream.cpp
stream.hpp
string.cpp
string.hpp
stringid.cpp
stringid.hpp
strongdef.cpp
strongdef.hpp
tap.cpp
tap.hpp
term.cpp
term.hpp
thread/event.hpp
thread/flag.hpp
thread/monitor.cpp
thread/monitor.hpp
thread/semaphore.hpp
thread/ticketlock.cpp
thread/ticketlock.hpp
thread/spinlock.cpp
thread/spinlock.hpp
2017-01-17 19:20:30 +11:00
time.cpp
time.hpp
2018-01-01 15:47:41 +11:00
time/parse.hpp
time/parse8601.cpp
tuple/index.hpp
tuple/type.hpp
tuple/value.hpp
typeidx.cpp
typeidx.hpp
2017-01-17 19:20:30 +11:00
types/bits.hpp
types/comparator.hpp
types/description.cpp
types/description.hpp
2017-01-17 19:20:30 +11:00
types.hpp
types/string.cpp
types/string.hpp
types/traits.hpp
uri.cpp
uri.hpp
2017-10-02 15:25:59 +11:00
utf8.cpp
utf8.hpp
2017-01-17 19:20:30 +11:00
variadic.cpp
variadic.hpp
vector.cpp
vector.hpp
version.cpp
version.hpp
view.cpp
view.hpp
)
##-----------------------------------------------------------------------------
## We shouldn't be building into the source directory, but I can't stand trying
## to coax CMake into behaving here any longer. Feel free to fix it.
add_custom_command (
OUTPUT
"${CMAKE_CURRENT_SOURCE_DIR}/preprocessor.hpp"
COMMENT
"[preprocessor.py] preprocessor.hpp"
COMMAND
"${PYTHON_EXECUTABLE}"
"${CMAKE_CURRENT_SOURCE_DIR}/preprocessor.py"
"${CMAKE_CURRENT_SOURCE_DIR}/preprocessor.hpp"
320
DEPENDS
"${CMAKE_CURRENT_SOURCE_DIR}/preprocessor.py"
)
2017-01-17 19:20:30 +11:00
###############################################################################
add_library(cruft ${UTIL_FILES})
add_library(cruft-util ALIAS cruft)
target_include_directories(cruft PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}")
search_libs (SHM_LIBS shm_open rt)
search_libs (DL_LIBS dlopen dl)
search_libs (CLOCK_LIBS clock_gettime rt c)
search_libs (MATH_LIBS cos m)
target_link_libraries(cruft ${SHM_LIBS})
target_link_libraries(cruft ${DL_LIBS})
target_link_libraries(cruft ${CLOCK_LIBS})
target_link_libraries(cruft ${MATH_LIBS})
# HACK: -ldl isn't getting discovered correctly so we add it unconditionally
# for the time being.
target_link_libraries(cruft dl)
2017-01-17 19:20:30 +11:00
###############################################################################
foreach (tool cpuid poisson macro scratch)
add_executable (util_${tool} tools/${tool}.cpp)
set_target_properties (util_${tool} PROPERTIES OUTPUT_NAME ${tool})
target_link_libraries (util_${tool} cruft)
target_include_directories(util_${tool} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
endforeach ()
2017-01-17 19:20:30 +11:00
###############################################################################
option (TESTS "enable unit testing" ON)
2017-01-18 21:46:25 +11:00
if (TESTS)
include(CTest)
enable_testing()
list (
APPEND TEST_BIN
ascii
algo/sort
alloc/aligned/foreign
alloc/aligned/direct
alloc/arena
#alloc/dynamic
alloc/linear
alloc/stack
alloc/forwarding
affine
backtrace
bezier
bitwise
cmdopt
colour
comparator
coord
2018-03-16 11:10:44 +11:00
coord/simd
encode/base
endian
exe
extent
fixed
float
format
geom/aabb
2018-04-16 15:59:39 +10:00
geom/ellipse
2018-03-13 22:37:40 +11:00
geom/frustum
2018-04-20 15:04:54 +10:00
geom/line
geom/plane
2018-04-16 15:59:39 +10:00
geom/ray
geom/segment
geom/sphere
hash/checksum
hash/crc
hash/fasthash
hash/fnv1a
hash/murmur
2018-01-19 11:31:12 +11:00
hash/siphash
hash/xxhash
hton
introspection
iterator
job/queue
2018-04-18 21:48:24 +10:00
kmeans
maths
2018-03-20 13:33:07 +11:00
maths/fast
matrix
memory/deleter
parallel/queue
parse
point
polynomial
pool
preprocessor
quaternion
rand/buckets
range
rational
region
roots/bisection
sarray
signal
2018-03-22 15:06:48 +11:00
singleton
stream
string
stringid
strongdef
thread/event
thread/flag
thread/monitor
thread/semaphore
thread/spinlock
thread/ticketlock
2018-01-01 15:47:41 +11:00
time/8601
2017-09-08 14:20:01 +10:00
traits
tuple/index
2018-04-05 13:54:42 +10:00
tuple/value
tuple/type
typeidx
uri
2017-10-02 15:25:59 +11:00
utf8
vector
version
view
)
foreach(t ${TEST_BIN})
string(REPLACE "/" "_" name "test/${t}")
add_executable(util_${name} test/${t}.cpp)
target_link_libraries(util_${name} PRIVATE cruft)
target_include_directories(util_${name} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
add_test(NAME util_${name} COMMAND util_${name})
set_tests_properties(util_${name} PROPERTIES FAIL_REGULAR_EXPRESSION "not ok -")
endforeach(t)
2018-04-01 14:49:10 +10:00
configure_file (test/cpp.sh.in util_test_cpp.sh @ONLY)
add_test (NAME util_test_cpp COMMAND util_test_cpp.sh)
set_property (TEST util_test_cpp APPEND PROPERTY DEPENDS util_macro)
set_tests_properties(util_test_cpp PROPERTIES FAIL_REGULAR_EXPRESSION "not ok -")
2017-01-18 21:46:25 +11:00
endif ()
2017-01-17 19:20:30 +11:00
###############################################################################
configure_file(libcruft.pc.in libcruft.pc)
configure_file(Doxyfile.in Doxyfile)