mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
7 lines
178 B
CMake
7 lines
178 B
CMake
|
cmake_minimum_required(VERSION 3.0)
|
||
|
project(exception_handling C)
|
||
|
|
||
|
add_library(exception_handling STATIC exception_handling.c)
|
||
|
|
||
|
install(TARGETS exception_handling DESTINATION .)
|