mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 12:49:36 -06:00
This needlessly produces warnings during the test runs that no-one sees but that are distracting when actually inspecting the logs.
18 lines
410 B
CMake
18 lines
410 B
CMake
cmake_minimum_required (VERSION 2.8.12)
|
|
project(CMAKE_LOADED_COMMANDS)
|
|
|
|
if (MUDSLIDE_TYPE MATCHES MUCHO)
|
|
add_definitions(-DMUCHO_MUDSLIDE)
|
|
endif ()
|
|
|
|
if(WATCOM)
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
|
|
endif()
|
|
include_directories(${CMAKE_ROOT}/include ${CMAKE_ROOT}/Source)
|
|
|
|
add_library(cmCMAKE_TEST_COMMAND MODULE cmTestCommand.c)
|
|
|
|
if(WATCOM)
|
|
target_link_libraries(cmCMAKE_TEST_COMMAND clbsdll.lib)
|
|
endif()
|