runtime/example/host/CMakeLists.txt

11 lines
252 B
CMake
Raw Normal View History

2025-01-04 05:34:24 -05:00
cmake_minimum_required(VERSION 3.17.0)
# Start Project
project(host)
# Build Library
add_subdirectory(../../lib lib)
# Build
add_library(media-layer-trampoline SHARED src/trampoline.c)
target_link_libraries(media-layer-trampoline trampoline-headers)