aboutsummaryrefslogtreecommitdiff
path: root/configuration
diff options
context:
space:
mode:
authorMarco Poletti <poletti.marco@gmail.com>2016-02-14 10:56:48 +0000
committerMarco Poletti <poletti.marco@gmail.com>2016-02-14 10:58:08 +0000
commite780c9a555c55e938bbd61dcdad64a73bb893563 (patch)
tree7f00e7461e61899e6121b6ee6eb26cbba1cdab8d /configuration
parent370e4ffc5ce5dce27e0888e1ffce86833f8a2b42 (diff)
downloadgoogle-fruit-e780c9a555c55e938bbd61dcdad64a73bb893563.tar.gz
Fix syntax errors in CMakeLists.txt.
Diffstat (limited to 'configuration')
-rw-r--r--configuration/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/configuration/CMakeLists.txt b/configuration/CMakeLists.txt
index 6b4a2c6..6461abd 100644
--- a/configuration/CMakeLists.txt
+++ b/configuration/CMakeLists.txt
@@ -83,12 +83,12 @@ int main() {
FRUIT_HAS_CXA_DEMANGLE)
if (NOT ${FRUIT_HAS_STD_MAX_ALIGN_T} AND NOT ${FRUIT_HAS_MAX_ALIGN_T})
- message(WARNING "The current C++ standard library doesn't support std::max_align_t nor ::max_align_t. Attempting to use std::max_align_t anyway, but it most likely won't work."
+ message(WARNING "The current C++ standard library doesn't support std::max_align_t nor ::max_align_t. Attempting to use std::max_align_t anyway, but it most likely won't work.")
endif()
if(NOT ${FRUIT_HAS_STD_IS_TRIVIALLY_COPYABLE} AND NOT ${FRUIT_HAS_IS_TRIVIALLY_COPYABLE}
AND NOT ${FRUIT_HAS_HAS_TRIVIAL_COPY})
- message(WARNING "The current standard library doesn't support std::is_trivially_copyable<T>, and the current compiler doesn't support __is_trivially_copyable(T) nor __has_trivial_copy(T). Attemping to use std::is_trivially_copyable<T> anyway, but it most likely won't work."
+ message(WARNING "The current standard library doesn't support std::is_trivially_copyable<T>, and the current compiler doesn't support __is_trivially_copyable(T) nor __has_trivial_copy(T). Attemping to use std::is_trivially_copyable<T> anyway, but it most likely won't work.")
endif()
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/fruit-config-base.h.in ${CMAKE_BINARY_DIR}/include/fruit/impl/fruit-config-base.h)