Sha256: 078b5358c5bc136d0bf1ba8fcb3b6ff3fa41ac726c564760807715b901672c3f

Contents?: true

Size: 1.53 KB

Versions: 15

Compression:

Stored size: 1.53 KB

Contents

# Copyright (C) 2007-2011 LuaDist.
# Created by Peter Drahoš
# Redistribution and use of this file is allowed according to the terms of the MIT license.
# For details see the COPYRIGHT file distributed with LuaDist.
# Please note that the package source code is licensed under its own license.

project ( luadist NONE )
cmake_minimum_required ( VERSION 2.6 )
include ( dist.cmake )

## LuaDist settings
# Host specific setup
set ( DETECTED_TYPE ${CMAKE_SYSTEM_PROCESSOR} )
set ( DETECTED_ARCH ${CMAKE_SYSTEM_NAME} )

if ( CYGWIN )
	# Make sure Cygwin uses correct arch and type.
	set ( DETECTED_TYPE x86 )
	set ( DETECTED_ARCH Cygwin )
elseif ( MSVC )
	set ( DETECTED_TYPE MSVC32 )
endif ()

set ( DIST_VERSION 1.2 )
set ( DIST_TYPE ${DETECTED_TYPE} CACHE STRING "Host system type. PLEASE CHECK!" FORCE )
set ( DIST_ARCH ${DETECTED_ARCH} CACHE STRING "Host system architecture. PLEASE CHECK!" FORCE )

configure_file ( dist/config.lua.in ${CMAKE_CURRENT_BINARY_DIR}/dist/config.lua @ONLY )

install_lua_executable ( luadist luadist )
install_lua_module ( dist.init dist/init.lua )
install_lua_module ( dist.dep dist/dep.lua )
install_lua_module ( dist.fetch dist/fetch.lua )
install_lua_module ( dist.log dist/log.lua )
install_lua_module ( dist.manifest dist/manifest.lua )
install_lua_module ( dist.package dist/package.lua )
install_lua_module ( dist.persist dist/persist.lua )
install_lua_module ( dist.sys dist/sys.lua )
install_lua_module ( dist.config ${CMAKE_CURRENT_BINARY_DIR}/dist/config.lua )

install_data ( COPYRIGHT README )
install_doc ( doc/ )

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
Tamar-0.7.18 src/luadist/CMakeLists.txt
Tamar-0.7.17 src/luadist/CMakeLists.txt
Tamar-0.7.16 src/luadist/CMakeLists.txt
Tamar-0.7.14 src/luadist/CMakeLists.txt
Tamar-0.7.13 src/luadist/CMakeLists.txt
Tamar-0.7.12 src/luadist/CMakeLists.txt
Tamar-0.7.11 src/luadist/CMakeLists.txt
Tamar-0.7.10 src/luadist/CMakeLists.txt
Tamar-0.7.9 src/luadist/CMakeLists.txt
Tamar-0.7.8 src/luadist/CMakeLists.txt
Tamar-0.7.7 src/luadist/CMakeLists.txt
Tamar-0.7.6 src/luadist/CMakeLists.txt
Tamar-0.7.5 src/luadist/CMakeLists.txt
Tamar-0.7.4 src/luadist/CMakeLists.txt
Tamar-0.7.3 src/luadist/CMakeLists.txt