summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordekimsey <dekimsey@gmail.com>2013-08-28 16:39:56 -0400
committerdekimsey <dekimsey@gmail.com>2013-08-28 16:39:56 -0400
commit64407b14d95bf9a1f93aa00c3b3df5c1b0b417eb (patch)
treeeba08502cd9caf117de20e2b2391702a7290497f
parentceb92f3d955faa317ce0703e788dcbdaeef81407 (diff)
downloadlua-64407b14d95bf9a1f93aa00c3b3df5c1b0b417eb.tar.gz
add lua.hpp to install_header
It looks as though 5.2 accidentally dropped the included lua.hpp file from install_header. 5.1.5 still has it. This file is required for C++ projects using Lua.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b025a53..bc9aed8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -151,7 +151,7 @@ install_executable ( lua luac )
install_library ( liblua )
install_data ( README.md )
#install_lua_module ( strict etc/strict.lua )
-install_header ( src/lua.h src/lualib.h src/lauxlib.h ${CMAKE_CURRENT_BINARY_DIR}/luaconf.h )
+install_header ( src/lua.h src/lualib.h src/lauxlib.h src/lua.hpp ${CMAKE_CURRENT_BINARY_DIR}/luaconf.h )
install_doc ( doc/ )
install_foo ( etc/ )
#install_test ( test/ )