Sha256: b4a5046c0ad35422837113030151c039fc52d5e557785db4f6895d09bc2197e5

Contents?: true

Size: 873 Bytes

Versions: 11

Compression:

Stored size: 873 Bytes

Contents

# ----------------------------------------------------------------------------
#  CMake file for Lua. See root CMakeLists.txt
#
# ----------------------------------------------------------------------------
project(lua)

include_directories(${CMAKE_CURRENT_SOURCE_DIR})

# ----------------------------------------------------------------------------------
# 				Define the library target:
# ----------------------------------------------------------------------------------

set(the_target "lua")

file(GLOB lib_srcs *.c)
list (REMOVE_ITEM lib_srcs ${CMAKE_CURRENT_SOURCE_DIR}/lua.c ${CMAKE_CURRENT_SOURCE_DIR}/luac.c)
file(GLOB lib_hdrs *.h)
set(lib_ext_hdrs)

add_library(${the_target} STATIC ${lib_srcs} ${lib_hdrs} ${lib_ext_hdrs})

set_target_properties(${the_target}
	PROPERTIES OUTPUT_NAME "${the_target}"
	ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/vendor_lib
	)

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
dub-1.0.0 test/fixtures/app/vendor/lua/CMakeLists.txt
dub-0.7.0 test/fixtures/app/vendor/lua/CMakeLists.txt
dub-0.6.6 test/fixtures/app/vendor/lua/CMakeLists.txt
dub-0.6.5 test/fixtures/app/vendor/lua/CMakeLists.txt
dub-0.6.4 test/fixtures/app/vendor/lua/CMakeLists.txt
dub-0.6.3 test/fixtures/app/vendor/lua/CMakeLists.txt
dub-0.6.2 test/fixtures/app/vendor/lua/CMakeLists.txt
dub-0.6.1 test/fixtures/app/vendor/lua/CMakeLists.txt
dub-0.6.0 test/fixtures/app/vendor/lua/CMakeLists.txt
dub-0.5.1 test/fixtures/app/vendor/lua/CMakeLists.txt
dub-0.5.0 test/fixtures/app/vendor/lua/CMakeLists.txt