2007-03-17 18:05:51 +00:00
|
|
|
#
|
|
|
|
# CMakeD - CMake module for D Language
|
|
|
|
#
|
|
|
|
# Copyright (c) 2007, Selman Ulug <selman.ulug@gmail.com>
|
2007-08-28 01:54:45 +00:00
|
|
|
# Tim Burrell <tim.burrell@gmail.com>
|
|
|
|
#
|
2007-03-17 18:05:51 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# See Copyright.txt for details.
|
|
|
|
#
|
|
|
|
|
2007-03-15 14:40:07 +00:00
|
|
|
PROJECT (cmaked NONE)
|
|
|
|
|
2007-08-28 16:30:59 +00:00
|
|
|
# note do not install FindGTK2.cmake. it is not required to install it
|
|
|
|
# to build the samples, and can break apps that use other FindGTK2 modules.
|
2007-03-15 14:40:07 +00:00
|
|
|
SET (MOD_SRCS
|
2007-08-28 00:31:46 +00:00
|
|
|
CMakeDCompiler.cmake.in
|
|
|
|
CMakeDInformation.cmake
|
|
|
|
CMakeTestDCompiler.cmake
|
|
|
|
CMakeDetermineDCompiler.cmake
|
|
|
|
FindGDCPath.cmake
|
2007-08-28 01:54:45 +00:00
|
|
|
UseDDoc.cmake
|
2007-08-28 00:31:46 +00:00
|
|
|
)
|
2007-03-15 14:40:07 +00:00
|
|
|
|
|
|
|
SET (PLAT_SRCS
|
2007-08-28 01:54:45 +00:00
|
|
|
Platform/Linux-dmd.cmake
|
|
|
|
Platform/Linux-gdc.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)
|