Files
photon/CMakeLists.txt

111 lines
3.9 KiB
CMake

cmake_minimum_required(VERSION 3.5)
#project(photon C ASM-ATT)
macro(subdirlist result curdir)
file(GLOB children RELATIVE ${curdir} ${curdir}/*)
set(dirlist "")
foreach (child ${children})
if (IS_DIRECTORY ${curdir}/${child})
list(APPEND dirlist ${child})
endif()
endforeach()
set(${result} ${dirlist})
endmacro()
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/platform.cmake)
platform_config(${PHOTON_TARGET})
message(STATUS "Target: ${machine}-${platform}")
include(${CMAKE_CURRENT_SOURCE_DIR}/photon/libc/sys/${platform}/config.cmake)
set(CMAKE_EXE_LINKER_FLAGS
"${CMAKE_EXE_LINKER_FLAGS} -ffreestanding -nostdlib -lgcc")
set(malloc_impl dlmalloc)
set(photon_libc_sources "")
set(generic_dirs string stdio internal)
message(STATUS "Memory allocator: ${malloc_impl}")
foreach (dir ${generic_dirs})
file(GLOB dir_sources ${CMAKE_CURRENT_SOURCE_DIR}/photon/libc/${dir}/*.c)
set(photon_libc_sources ${photon_libc_sources} ${dir_sources})
endforeach (dir)
file(GLOB malloc_sources
${CMAKE_CURRENT_SOURCE_DIR}/photon/libc/stdlib/${malloc_impl}/*.c
${CMAKE_CURRENT_SOURCE_DIR}/photon/libc/stdlib/${malloc_impl}/*.h)
file(GLOB_RECURSE photon_libc_headers ${CMAKE_CURRENT_SOURCE_DIR}/photon/libc/include/*.h)
file(GLOB photon_libc_crt
${CMAKE_CURRENT_SOURCE_DIR}/photon/libc/sys/${platform}/machine/${machine}/crt*.s)
add_library(crt OBJECT ${photon_libc_crt})
target_compile_options(crt PRIVATE -c)
file(GLOB platform_sources
${CMAKE_CURRENT_SOURCE_DIR}/photon/libc/sys/${platform}/*.c
${CMAKE_CURRENT_SOURCE_DIR}/photon/libc/sys/${platform}/machine/${machine}/*.c
${CMAKE_CURRENT_SOURCE_DIR}/photon/libc/sys/${platform}/machine/${machine}/*.s)
foreach (platform_source_dir ${photon_platform_extra_source_dirs})
file(GLOB dir_sources
${CMAKE_CURRENT_SOURCE_DIR}/photon/libc/sys/${platform}/${platform_source_dir}/*.c
${CMAKE_CURRENT_SOURCE_DIR}/photon/libc/sys/${platform}/${platform_source_dir}/*.h)
set(platform_sources ${platform_sources} ${dir_sources})
endforeach (platform_source_dir)
foreach (platform_include_dir ${photon_platform_extra_include_dirs})
file(GLOB dir_sources
${CMAKE_CURRENT_SOURCE_DIR}/photon/libc/sys/${platform}/${platform_include_dir}/*.h)
set(platform_sources ${platform_sources} ${dir_sources})
endforeach (platform_include_dir)
foreach (crt_source ${photon_libc_crt})
list(REMOVE_ITEM platform_sources ${crt_source})
endforeach (crt_source)
file(GLOB platform_headers
${CMAKE_CURRENT_SOURCE_DIR}/photon/sys/${platform}/*.h
${CMAKE_CURRENT_SOURCE_DIR}/photon/sys/${platform}/machine/${machine}/*.h)
set(photon_libc_sources ${photon_libc_sources} ${malloc_sources} ${platform_sources})
set(photon_libc_headers ${photon_libc_headers} ${platform_headers})
if (PHOTON_STATIC EQUAL 1)
add_library(c STATIC ${photon_libc_sources} ${photon_libc_headers})
else ()
add_library(c SHARED ${photon_libc_sources} ${photon_libc_headers})
endif ()
target_compile_options(c PRIVATE -ffreestanding -nostdlib)
target_link_libraries(c crt ${photon_platform_libs})
target_include_directories(c PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/photon/libc/include
${CMAKE_CURRENT_SOURCE_DIR}/photon/libc/sys/${platform}/
${CMAKE_CURRENT_BINARY_DIR}/sysroot/usr/include)
foreach (platform_include_dir ${photon_platform_extra_include_dirs})
target_include_directories(c PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}/photon/libc/sys/${platform}/${platform_include_dir})
endforeach (platform_include_dir)
add_custom_target(local-root
DEPENDS ${photon_libc_headers}
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/scripts/create-sysroot.sh
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${platform} ${machine})
add_dependencies(c local-root)
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
target_link_libraries(c gcc)
endif ()
if (PHOTON_TESTS EQUAL 1)
add_subdirectory(tests)
endif ()