blob: 71a3a937df03b6e4525e30cf26af7b024ba18b3b (
plain)
1
2
3
4
5
6
7
8
9
|
# build tools/mrbc executable
file(GLOB MRBC_SRC_C "*.c")
add_executable(mrbc ${MRBC_SRC_C})
target_link_libraries(mrbc mruby_static ${MRUBY_LIBS})
install(TARGETS mrbc RUNTIME DESTINATION bin)
# vim: ts=2 sts=2 sw=2 et
|