This repository has been archived on 2024-05-15. You can view files and clone it, but cannot push or open issues or pull requests.
fugg/flyff-client/CMakeLists.txt

10 lines
221 B
CMake

add_subdirectory("wasm-rt")
add_library (
flyff-client
"src/client.c"
"include/client.h"
)
target_include_directories(flyff-client PUBLIC "include")
target_link_libraries (flyff-client LINK_PUBLIC wasm-rt)