You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
437 B
18 lines
437 B
# Set the default compile features and properties for a target.
|
|
|
|
if (NOT TARGET)
|
|
message(FATAL_ERROR "TARGET not set before including DefaultTargetOptions")
|
|
endif()
|
|
|
|
target_compile_features(${TARGET}
|
|
PRIVATE
|
|
cxx_std_11
|
|
)
|
|
|
|
set_target_properties(${TARGET}
|
|
PROPERTIES
|
|
EXPORT_COMPILE_COMMANDS ON
|
|
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin"
|
|
INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib"
|
|
)
|