CMakeLists.txt 707 Bytes
Newer Older
1 2
add_subdirectory(deboost.context)

3 4
if (CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND CMAKE_SYSTEM_NAME STREQUAL "Linux")
    SET(SWITCH_ASSEMBLY "custom_stack_callback_x86_64.s")
5
elseif (CMAKE_SYSTEM_PROCESSOR STREQUAL "armv7l" AND CMAKE_SYSTEM_NAME STREQUAL "Linux")
6
    SET(SWITCH_ASSEMBLY "custom_stack_callback_arm32.s")
7 8 9 10 11
else ()
    MESSAGE(FATAL_ERROR "Platform (${CMAKE_SYSTEM_PROCESSOR} on ${CMAKE_SYSTEM_NAME}) not supported! Please see Readme for instructions to port.")
endif ()


12 13
add_executable(context_switch
        main.cpp
14
        ${SWITCH_ASSEMBLY})
15 16

# Example for adding the library to your app (as a cmake project dependency)
17
target_link_libraries(context_switch fcontext context_switcher)