CMakeLists.txt 3.83 KB
Newer Older
1 2
# List all required files here (cmake best practice to NOT automate this step!)
add_library(pls STATIC
FritzFlorian committed
3
        include/pls/internal/base/spin_lock.h
4 5 6 7
        include/pls/internal/base/tas_spin_lock.h src/internal/base/tas_spin_lock.cpp
        include/pls/internal/base/ttas_spin_lock.h src/internal/base/ttas_spin_lock.cpp
        include/pls/internal/base/swmr_spin_lock.h src/internal/base/swmr_spin_lock.cpp
        include/pls/internal/base/barrier.h src/internal/base/barrier.cpp
8
        include/pls/internal/base/system_details.h
9
        include/pls/internal/base/error_handling.h src/internal/base/error_handling.cpp
10
        include/pls/internal/base/alignment.h src/internal/base/alignment.cpp
11

12 13 14
        include/pls/internal/data_structures/aligned_stack.h src/internal/data_structures/aligned_stack.cpp
        include/pls/internal/data_structures/aligned_stack_impl.h
        include/pls/internal/data_structures/stamped_integer.h
15
        include/pls/internal/data_structures/delayed_initialization.h
16 17 18
        include/pls/internal/data_structures/bounded_trading_deque.h
        include/pls/internal/data_structures/bounded_ws_deque.h
        include/pls/internal/data_structures/optional.h
19 20 21 22

        include/pls/internal/helpers/prohibit_new.h
        include/pls/internal/helpers/profiler.h
        include/pls/internal/helpers/mini_benchmark.h
FritzFlorian committed
23
        include/pls/internal/helpers/unique_id.h
24
        include/pls/internal/helpers/range.h
25
        include/pls/internal/helpers/seqence.h
26
        include/pls/internal/helpers/member_function.h
27

28
        include/pls/internal/scheduling/thread_state.h src/internal/scheduling/thread_state.cpp
29
        include/pls/internal/scheduling/scheduler.h src/internal/scheduling/scheduler.cpp
30
        include/pls/internal/scheduling/scheduler_impl.h
31
        include/pls/internal/scheduling/task_manager.h src/internal/scheduling/task_manager.cpp
32
        include/pls/internal/scheduling/task.h src/internal/scheduling/task.cpp
33
        include/pls/internal/scheduling/external_trading_deque.h src/internal/scheduling/external_trading_deque.cpp
34
        include/pls/internal/scheduling/traded_cas_field.h
35
        include/pls/internal/scheduling/task_manager_impl.h)
36

37 38 39 40 41 42 43
# Dependencies for pls
target_link_libraries(pls Threads::Threads)
target_link_libraries(pls context_switcher)
if (EASY_PROFILER)
    target_link_libraries(pls easy_profiler)
endif ()

44 45 46
# Add everything in `./include` to be in the include path of this project
target_include_directories(pls
        PUBLIC
47 48
        $<INSTALL_INTERFACE:include>
        $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
49
        PRIVATE
50 51
        ${CMAKE_CURRENT_SOURCE_DIR}/src # TODO: Set this up when we require private headers
        )
52

53 54 55 56 57 58
# Enable warnings/tidy code checking from our compiler
target_compile_options(pls PRIVATE
        $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>:
        -Wall>
        $<$<CXX_COMPILER_ID:MSVC>:
        -W4>)
59

60
# Rules for installing the library on a system
61
# ...binaries
62
INSTALL(TARGETS pls
63
        EXPORT pls-targets
64 65
        LIBRARY DESTINATION lib/pls
        ARCHIVE DESTINATION lib/pls
66
        )
67
# ...all headers in `include`
68 69
INSTALL(
        DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/include/pls
70 71 72
        DESTINATION include
        FILES_MATCHING PATTERN "*.h*"
)
73 74 75 76 77 78 79 80 81 82 83
# ...allow our project to be a cmake dependency
install(
        EXPORT pls-targets
        FILE plsTargets.cmake
        NAMESPACE pls::
        DESTINATION lib/pls
)
INSTALl(
        FILES pls-config.cmake
        DESTINATION lib/pls
)
84
# ...add a custom target that will only build the library when installing.
85 86 87 88 89
# This can allow us to speed up the installation on embedded devices.
ADD_CUSTOM_TARGET(install.pls
        ${CMAKE_COMMAND}
        -DBUILD_TYPE=${CMAKE_BUILD_TYPE}
        -P ${CMAKE_BINARY_DIR}/cmake_install.cmake)
90
ADD_DEPENDENCIES(install.pls context_switcher pls)