mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
21 lines
540 B
CMake
21 lines
540 B
CMake
add_library(hyperion-api
|
|
${CMAKE_SOURCE_DIR}/include/api/apiStructs.h
|
|
${CMAKE_SOURCE_DIR}/include/api/API.h
|
|
${CMAKE_SOURCE_DIR}/include/api/JsonAPI.h
|
|
${CMAKE_SOURCE_DIR}/include/api/JsonCB.h
|
|
${CMAKE_SOURCE_DIR}/libsrc/api/JsonAPI.cpp
|
|
${CMAKE_SOURCE_DIR}/libsrc/api/API.cpp
|
|
${CMAKE_SOURCE_DIR}/libsrc/api/JsonCB.cpp
|
|
${CMAKE_SOURCE_DIR}/libsrc/api/JSONRPC_schemas.qrc
|
|
)
|
|
|
|
target_link_libraries(hyperion-api
|
|
hyperion
|
|
hyperion-utils
|
|
${DIRECTX9_LIBRARIES}
|
|
)
|
|
|
|
target_include_directories(hyperion-api PRIVATE
|
|
${DIRECTX9_INCLUDE_DIRS}
|
|
)
|