From 15c6b9b165f95a90d413b81ec5a3a430b81a4160 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 16 Aug 2012 10:23:25 -0700 Subject: [PATCH] MSVC wants __declspec(align), not __declspec(aligned) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0634e4eb..92bc4e42 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -174,7 +174,7 @@ ENDIF() # Set visibility/export options if available IF(WIN32) SET(EXPORT_DECL "__declspec(dllexport)") - SET(ALIGN_DECL "__declspec(aligned((x)))") + SET(ALIGN_DECL "__declspec(align((x)))") OPTION(WINE "Enable use of Wine headers when compiling" OFF) IF(WINE) -- 2.11.4.GIT