# # CMakeD - CMake module for D Language # # Copyright (c) 2007, Selman Ulug # Tim Burrell # # All rights reserved. # # See Copyright.txt for details. # CMAKE_MINIMUM_REQUIRED(VERSION 2.8.1) PROJECT (cmaked NONE) SET (MOD_SRCS CMakeDCompiler.cmake.in CMakeDCompilerId.d.in CMakeDInformation.cmake CMakeDCompilerABI.d CMakeTestDCompiler.cmake CMakeDetermineDCompiler.cmake FindGDCPath.cmake UseDDoc.cmake UseDDeps.cmake dependencies.cmake UseDUnittest.cmake FindPhobos.cmake ) SET (PLAT_SRCS Platform/Linux-dmd.cmake Platform/Linux-gdc.cmake Platform/Windows-dmd.cmake Platform/Windows-gdc.cmake ) INSTALL (FILES ${MOD_SRCS} DESTINATION ${CMAKE_ROOT}/Modules) INSTALL (FILES ${PLAT_SRCS} DESTINATION ${CMAKE_ROOT}/Modules/Platform)