From dbf215ef683e545de593f5b434764b97dea3e2ac Mon Sep 17 00:00:00 2001 From: Alexey Melnichuk Date: Mon, 30 Jun 2014 13:59:51 +0500 Subject: Fix. CMakeLists file install `llthreads2.ex` module. --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f96b32a..02d6bfb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,8 @@ include_directories ( ${CMAKE_CURRENT_SOURCE_DIR}/src ) set ( LUA_LLTHREADS_SRC src/l52util.c src/llthread.c ) -install_lua_module ( llthreads2 ${LUA_LLTHREADS_SRC} LINK ${CMAKE_THREAD_LIBS_INIT} ) +install_lua_module ( llthreads2 ${LUA_LLTHREADS_SRC} LINK ${CMAKE_THREAD_LIBS_INIT} ) +install_lua_module ( llthreads2.ex src/lua/llthreads2/ex.lua ) install_data ( COPYRIGHT.llthreads README.md LICENSE ) install_test ( test/ ) -- cgit v1.2.3-55-g6feb