# List all required files here (cmake best practice to NOT automate this step!) add_library(pls STATIC include/pls/internal/base/spin_lock.h 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 include/pls/internal/base/system_details.h include/pls/internal/base/error_handling.h src/internal/base/error_handling.cpp include/pls/internal/base/alignment.h src/internal/base/alignment.cpp 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 include/pls/internal/data_structures/delayed_initialization.h 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 include/pls/internal/helpers/prohibit_new.h include/pls/internal/helpers/profiler.h include/pls/internal/helpers/mini_benchmark.h include/pls/internal/helpers/unique_id.h include/pls/internal/helpers/range.h include/pls/internal/helpers/seqence.h include/pls/internal/helpers/member_function.h include/pls/internal/scheduling/thread_state.h src/internal/scheduling/thread_state.cpp include/pls/internal/scheduling/scheduler.h src/internal/scheduling/scheduler.cpp include/pls/internal/scheduling/scheduler_impl.h include/pls/internal/scheduling/task_manager.h src/internal/scheduling/task_manager.cpp include/pls/internal/scheduling/task.h src/internal/scheduling/task.cpp include/pls/internal/scheduling/external_trading_deque.h src/internal/scheduling/external_trading_deque.cpp include/pls/internal/scheduling/traded_cas_field.h include/pls/internal/scheduling/task_manager_impl.h) # 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 () # Add everything in `./include` to be in the include path of this project target_include_directories(pls PUBLIC $ $ PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src # TODO: Set this up when we require private headers ) # Enable warnings/tidy code checking from our compiler target_compile_options(pls PRIVATE $<$,$,$>: -Wall> $<$: -W4>) # Rules for installing the library on a system # ...binaries INSTALL(TARGETS pls EXPORT pls-targets LIBRARY DESTINATION lib/pls ARCHIVE DESTINATION lib/pls ) # ...all headers in `include` INSTALL( DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/include/pls DESTINATION include FILES_MATCHING PATTERN "*.h*" ) # ...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 ) # ...add a custom target that will only build the library when installing. # 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) ADD_DEPENDENCIES(install.pls context_switcher pls)