summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt12
-rw-r--r--src/regex.h2
2 files changed, 12 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
new file mode 100644
index 000000000..390129eb9
--- /dev/null
+++ b/src/CMakeLists.txt
@@ -0,0 +1,12 @@
+# build the core mruby C files
+
+find_package(BISON)
+bison_target(mruby parse.y "${CMAKE_CURRENT_BINARY_DIR}/parse.c")
+
+file(GLOB MRUBY_SRC_C "*.c")
+list(APPEND MRUBY_SRC_C "${CMAKE_CURRENT_BINARY_DIR}/parse.c")
+
+add_library(mruby_object OBJECT ${MRUBY_SRC_C} ${BISON_mruby_OUTPUTS})
+add_library(mruby_static STATIC EXCLUDE_FROM_ALL $<TARGET_OBJECTS:mruby_object>)
+
+# vim: ts=2 sts=2 sw=2 et
diff --git a/src/regex.h b/src/regex.h
index 4cdad2a33..f3f797b00 100644
--- a/src/regex.h
+++ b/src/regex.h
@@ -15,8 +15,6 @@ extern "C" {
#ifndef ONIG_RUBY_M17N
-ONIG_EXTERN OnigEncoding OnigEncDefaultCharEncoding;
-
#define mbclen(p,e,enc) mrb_enc_mbclen((p),(e),(enc))
#endif /* ifndef ONIG_RUBY_M17N */