Merge pull request #68 from nicolasnoble/typos

Fixing typos in build.json: .cpp -> .cc
pull/72/head
Craig Tiller 10 years ago
commit 07c7c680e8
  1. 8
      Makefile
  2. 8
      build.json

@ -2654,8 +2654,8 @@ endif
CPP_PLUGIN_SRC = \
src/compiler/cpp_plugin.cpp \
src/compiler/cpp_generator.cpp \
src/compiler/cpp_plugin.cc \
src/compiler/cpp_generator.cc \
CPP_PLUGIN_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(CPP_PLUGIN_SRC))))
@ -2675,8 +2675,8 @@ endif
RUBY_PLUGIN_SRC = \
src/compiler/ruby_plugin.cpp \
src/compiler/ruby_generator.cpp \
src/compiler/ruby_plugin.cc \
src/compiler/ruby_generator.cc \
RUBY_PLUGIN_OBJS = $(addprefix objs/$(CONFIG)/, $(addsuffix .o, $(basename $(RUBY_PLUGIN_SRC))))

@ -422,8 +422,8 @@
"c++": true,
"secure": false,
"src": [
"src/compiler/cpp_plugin.cpp",
"src/compiler/cpp_generator.cpp"
"src/compiler/cpp_plugin.cc",
"src/compiler/cpp_generator.cc"
],
"headers": [
"src/compiler/cpp_generator.h",
@ -437,8 +437,8 @@
"c++": true,
"secure": false,
"src": [
"src/compiler/ruby_plugin.cpp",
"src/compiler/ruby_generator.cpp"
"src/compiler/ruby_plugin.cc",
"src/compiler/ruby_generator.cc"
],
"headers": [
"src/compiler/cpp_generator.h",

Loading…
Cancel
Save