2025-05-10 21:49:39 +08:00

94 lines
2.1 KiB
CMake

# vim: syntax=cmake
cmake_minimum_required(VERSION 2.6.3)
PROJECT(osal C CXX)
INCLUDE(GNUInstallDirs)
find_package(Threads)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_REENTRANT -D_GNU_SOURCE")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
if (HAVE_DRM)
add_definitions(-DHAVE_DRM)
set(DRM_FILES allocator/allocator_drm.c)
message(STATUS "compile with drm support")
else()
message(STATUS "compile without drm support")
endif()
set(MPP_ALLOCATOR
allocator/allocator_std.c
allocator/allocator_ion.c
allocator/allocator_ext_dma.c
allocator/allocator_dma_heap.c
${DRM_FILES}
)
set(MPP_DRIVER
driver/mpp_server.cpp
driver/mpp_device.c
driver/mpp_service.c
driver/vcodec_service.c
)
add_library(osal STATIC
mpp_soc.cpp
mpp_platform.cpp
mpp_runtime.cpp
mpp_allocator.cpp
mpp_mem_pool.cpp
mpp_callback.cpp
mpp_eventfd.cpp
mpp_thread.cpp
mpp_compat.cpp
mpp_common.cpp
mpp_queue.cpp
mpp_trace.cpp
mpp_lock.cpp
mpp_time.cpp
mpp_list.cpp
mpp_mem.cpp
mpp_env.cpp
mpp_log.cpp
osal_2str.c
# Those files have a compiler marco protection, so only target
# OS will be built
android/os_allocator.c
android/os_mem.c
android/os_env.c
android/os_log.c
linux/os_allocator.c
linux/os_mem.c
linux/os_env.c
linux/os_log.cpp
windows/os_allocator.c
windows/os_mem.c
windows/os_env.c
windows/os_log.c
${MPP_ALLOCATOR}
${MPP_DRIVER}
)
target_link_libraries(osal ${CMAKE_THREAD_LIBS_INIT})
target_include_directories(osal PUBLIC
"${CMAKE_CURRENT_SOURCE_DIR}"
"${CMAKE_CURRENT_SOURCE_DIR}/inc"
"${CMAKE_CURRENT_SOURCE_DIR}/allocator"
"${CMAKE_CURRENT_SOURCE_DIR}/driver/inc"
)
set_target_properties(osal PROPERTIES FOLDER "osal")
# leave those special platform here
if(ANDROID)
add_definitions(-static)
# in Android pthread is in libc, also need liblog
target_link_libraries(osal log m)
endif(ANDROID)
# unit test
add_subdirectory(test)