mirror of
https://github.com/reactos/CMake.git
synced 2024-12-04 01:22:28 +00:00
b4ace1cca0
This creates an "IPO" test that builds some other tests as subdirectories while enabling INTERPROCEDURAL_OPTIMIZATION. See issue #9615.
8 lines
191 B
CMake
8 lines
191 B
CMake
cmake_minimum_required (VERSION 2.8)
|
|
project(IPO NONE)
|
|
|
|
SET_PROPERTY(DIRECTORY PROPERTY INTERPROCEDURAL_OPTIMIZATION 1)
|
|
|
|
add_subdirectory(../COnly COnly)
|
|
add_subdirectory(../CxxOnly CxxOnly)
|