summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/bindings/swig/lua/CMakeLists.txt4
-rw-r--r--src/uscxml/plugins/datamodel/CMakeLists.txt4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/bindings/swig/lua/CMakeLists.txt b/src/bindings/swig/lua/CMakeLists.txt
index 344edec..93accad 100644
--- a/src/bindings/swig/lua/CMakeLists.txt
+++ b/src/bindings/swig/lua/CMakeLists.txt
@@ -1,8 +1,8 @@
# generate JNI library and create a jar
# Make from within Eclipse fails miserably with the whole thing
-find_package(Lua)
-if(LUA_FOUND)
+find_package(Lua51)
+if(LUA51_FOUND)
include_directories(${LUA_INCLUDE_DIR})
else()
message(STATUS "No Lua headers found - not building Lua wrappers")
diff --git a/src/uscxml/plugins/datamodel/CMakeLists.txt b/src/uscxml/plugins/datamodel/CMakeLists.txt
index 4004ef2..fd08ee0 100644
--- a/src/uscxml/plugins/datamodel/CMakeLists.txt
+++ b/src/uscxml/plugins/datamodel/CMakeLists.txt
@@ -36,7 +36,7 @@ if (V8_FOUND)
endif()
-if (LUA_FOUND)
+if (LUA51_FOUND)
set(USCXML_DATAMODELS "lua ${USCXML_DATAMODELS}")
# Lua ecmascript datamodel
file(GLOB LUA_DATAMODEL
@@ -100,7 +100,7 @@ else()
endif()
- if (LUA_FOUND)
+ if (LUA51_FOUND)
add_custom_target(lua-bindings
COMMAND ${SWIG_EXECUTABLE}
-I${XercesC_INCLUDE_DIRS}