cmake-d/cmake-d/CMakeLists.txt

40 lines
949 B
Text
Raw Normal View History

#
# CMakeD - CMake module for D Language
#
2013-10-16 22:37:30 +02:00
# Copyright (c) 2013, Selman Ulug <selman.ulug@gmail.com>
# Tim Burrell <tim.burrell@gmail.com>
2013-10-16 22:37:30 +02:00
# Dragos Carp <dragos.carp@gmail.com>
#
# All rights reserved.
#
2013-10-16 22:37:30 +02:00
# See LICENSE for details.
#
CMAKE_MINIMUM_REQUIRED(VERSION 2.8.1)
2013-10-16 17:22:30 +02:00
PROJECT (cmake-d NONE)
2007-03-15 14:40:07 +00:00
SET (MOD_SRCS
2007-08-28 00:31:46 +00:00
CMakeDCompiler.cmake.in
CMakeDCompilerId.d.in
2007-08-28 00:31:46 +00:00
CMakeDInformation.cmake
CMakeDCompilerABI.d
2007-08-28 00:31:46 +00:00
CMakeTestDCompiler.cmake
CMakeDetermineDCompiler.cmake
FindGDCPath.cmake
UseDDoc.cmake
UseDDeps.cmake
dependencies.cmake
2010-10-03 01:32:53 +02:00
UseDUnittest.cmake
2010-11-03 22:13:54 +01:00
FindPhobos.cmake
2007-08-28 00:31:46 +00:00
)
2007-03-15 14:40:07 +00:00
SET (PLAT_SRCS
Platform/Linux-dmd.cmake
Platform/Linux-gdc.cmake
2013-10-24 01:26:04 +02:00
Platform/Linux-ldc.cmake
Platform/Windows-dmd.cmake
Platform/Windows-gdc.cmake
2007-08-28 00:31:46 +00:00
)
2007-03-15 14:40:07 +00:00
INSTALL (FILES ${MOD_SRCS} DESTINATION ${CMAKE_ROOT}/Modules)
INSTALL (FILES ${PLAT_SRCS} DESTINATION ${CMAKE_ROOT}/Modules/Platform)