From 9f89da6eef2c830db6fc3abb08fe755ae7ce9b6c Mon Sep 17 00:00:00 2001 From: Jon Date: Wed, 2 May 2012 20:46:09 -0400 Subject: Add native and cross compiling CMake build support --- tools/mirb/CMakeLists.txt | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tools/mirb/CMakeLists.txt (limited to 'tools/mirb') diff --git a/tools/mirb/CMakeLists.txt b/tools/mirb/CMakeLists.txt new file mode 100644 index 000000000..a9f52db1f --- /dev/null +++ b/tools/mirb/CMakeLists.txt @@ -0,0 +1,9 @@ +# 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 -- cgit v1.2.3