This website requires JavaScript.
Explore
Help
Register
Sign In
reactos
/
CMake
Watch
1
Star
0
Fork
0
You've already forked CMake
mirror of
https://github.com/reactos/CMake.git
synced
2025-01-02 00:39:17 +00:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
248d1dc057
CMake
/
Tests
/
RunCMake
/
GeneratorToolset
/
CMakeLists.txt
4 lines
101 B
CMake
Raw
Normal View
History
Unescape
Escape
Cygwin: Avoid legacy warnings in RunCMake.* tests Set the minimum required version of CMake high enough to avoid the warning for CMAKE_LEGACY_CYGWIN_WIN32. The warning appears on stderr and breaks the expected output matching.
2013-08-13 13:46:14 +00:00
cmake_minimum_required
(
VERSION
2.8.4
)
CMake: Add -T option to choose a generator toolset Reject the option by default. It will be implemented on a per-generator basis. Pass the setting into try_compile project generation. Add cache entry CMAKE_GENERATOR_TOOLSET and associated variable documentation to hold the value persistently. Add a RunCMake.GeneratorToolset test to cover basic "-T" option cases. Verify that CMAKE_GENERATOR_TOOLSET is empty without -T, that -T is rejected when the generator doesn't support it, and that two -T options are always rejected.
2012-12-10 15:42:33 +00:00
project
(
${
RunCMake_TEST
}
NONE
)
include
(
${
RunCMake_TEST
}
.cmake
)
Reference in New Issue
Copy Permalink