mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
6f4eda7401
Also removes an unnecessary build target from the CMake generated build and project files.
10 lines
241 B
CMake
10 lines
241 B
CMake
# build tools/mrbc executable
|
|
|
|
file(GLOB MRBC_SRC_C "*.c")
|
|
add_executable(mrbc ${MRBC_SRC_C} $<TARGET_OBJECTS:mruby_object>)
|
|
target_link_libraries(mrbc ${MRUBY_LIBS})
|
|
|
|
install(TARGETS mrbc RUNTIME DESTINATION bin)
|
|
|
|
# vim: ts=2 sts=2 sw=2 et
|