# Base Io build system
# Written by Jeremy Tregunna <jeremy.tregunna@me.com>
#
# Build the coroutine library.

# Output our dynamic library to the top-level _build hierarchy
set(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/_build/dll)

# Definitions, love them.
add_definitions("-DBUILDING_CORO_DLL")

# Check if we're on FreeBSD, if so, use ucontext.
if(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
	add_definitions("-DUSE_UCONTEXT")
endif(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")

# Set up Coroutine include dirs, -I args to compiler.
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../basekit/source)

# Sources... in all their wonderous glory!
file(GLOB SRCS "source/*.c")

# Hackery for CMake's horrible ASM support... but not on Windows
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Windows")
	set(ASM_SOURCES source/asm.S)
	set_source_files_properties(${ASM_SOURCES} PROPERTIES LANGUAGE C)
	list(APPEND SRCS ${ASM_SOURCES})
endif(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Windows")

# Now build the shared library
add_library(coroutine SHARED ${SRCS})

# The following add the install target, so we put libcoroutine.* in
# our install prefix.
install(TARGETS coroutine DESTINATION ${CMAKE_INSTALL_PREFIX}/lib)
