mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
9 lines
238 B
CMake
9 lines
238 B
CMake
# - Try to build faster depending on the compiler
|
|
|
|
# faster builds by using a pipe instead of temp files
|
|
include (AddOptions)
|
|
if (CMAKE_COMPILER_IS_GNUCXX)
|
|
add_options (ALL_LANGUAGES ALL_BUILDS "-pipe")
|
|
endif (CMAKE_COMPILER_IS_GNUCXX)
|
|
|