mirror of
https://github.com/SysRay/psOff_public.git
synced 2024-11-23 14:29:39 +00:00
18 lines
348 B
CMake
18 lines
348 B
CMake
cmake_minimum_required(VERSION 3.24)
|
|
include(../setupModule.cmake)
|
|
|
|
set(libName libSceRtc)
|
|
project(${libName})
|
|
|
|
add_library(${libName} SHARED entry.cpp)
|
|
|
|
add_dependencies(${libName} third_party)
|
|
target_link_libraries(${libName} PRIVATE
|
|
libboost_chrono
|
|
)
|
|
|
|
target_compile_definitions(${libName} PRIVATE
|
|
BOOST_ALL_NO_LIB
|
|
)
|
|
|
|
setupModule(${libName}) |