mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
10 lines
232 B
CMake
10 lines
232 B
CMake
# build tools/mirb executable
|
|
|
|
file(GLOB MIRBBIN_SRC_C "*.c")
|
|
add_executable(mirb ${MIRBBIN_SRC_C})
|
|
target_link_libraries(mirb libmruby_static ${MRUBY_LIBS})
|
|
|
|
install(TARGETS mirb RUNTIME DESTINATION bin)
|
|
|
|
# vim: ts=2 sts=2 sw=2 et
|