summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Drahos <drahos@gmail.com>2011-08-09 01:25:51 +0200
committerPeter Drahos <drahos@gmail.com>2011-08-09 01:25:51 +0200
commitfa0a457861871810ad6943aa79cf61aff19cb379 (patch)
tree401784a56252b2bac47b1c4f510eb954c3fea33f
parentbaeb90b473e1a7418888fe956d88663fbbc0199f (diff)
downloadlua-fa0a457861871810ad6943aa79cf61aff19cb379.tar.gz
Removed version number from the lib again. Version causes issues in binary installation when swapped to LuaJIT.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 23a3c68..1eeb08a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -126,7 +126,7 @@ endif ()
# Create dynamic library
add_library ( liblua SHARED ${SRC_LIB} ${LUA_DLL_RC} ${LUA_DEF} )
target_link_libraries ( liblua ${LIBS} )
-set_target_properties ( liblua PROPERTIES OUTPUT_NAME lua51 CLEAN_DIRECT_OUTPUT 1 )
+set_target_properties ( liblua PROPERTIES OUTPUT_NAME lua CLEAN_DIRECT_OUTPUT 1 )
# Create static library, this is needed to compile luac in the 5.1.x Lua series
add_library ( liblua_static STATIC ${SRC_LIB} )