summaryrefslogtreecommitdiffhomepage
path: root/tools/mrbc/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'tools/mrbc/CMakeLists.txt')
-rw-r--r--tools/mrbc/CMakeLists.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/mrbc/CMakeLists.txt b/tools/mrbc/CMakeLists.txt
index 073ac1743..71a3a937d 100644
--- a/tools/mrbc/CMakeLists.txt
+++ b/tools/mrbc/CMakeLists.txt
@@ -1,7 +1,9 @@
-# builds tools/mrbc
+# build tools/mrbc executable
+
file(GLOB MRBC_SRC_C "*.c")
add_executable(mrbc ${MRBC_SRC_C})
-target_link_libraries(mrbc ritevm_static ${MRUBY_LIBS})
-install(TARGETS mrbc RUNTIME DESTINATION bin)
+target_link_libraries(mrbc mruby_static ${MRUBY_LIBS})
+install(TARGETS mrbc RUNTIME DESTINATION bin)
+# vim: ts=2 sts=2 sw=2 et