diff options
author | eathenabot <eathenabot@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-05-12 20:14:01 +0000 |
---|---|---|
committer | eathenabot <eathenabot@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-05-12 20:14:01 +0000 |
commit | 2a28e9c80e2386961db84f5ce932b1e33f43b7b3 (patch) | |
tree | f83f743fcc1296e8e52ae78adcd6b9899024e07b /src/plugins | |
parent | a56813476c822a9cf7a543a9e419255b70680bf0 (diff) | |
download | hercules-2a28e9c80e2386961db84f5ce932b1e33f43b7b3.tar.gz hercules-2a28e9c80e2386961db84f5ce932b1e33f43b7b3.tar.bz2 hercules-2a28e9c80e2386961db84f5ce932b1e33f43b7b3.tar.xz hercules-2a28e9c80e2386961db84f5ce932b1e33f43b7b3.zip |
* Merged changes up to eAthena 15095.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16105 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/CMakeLists.txt b/src/plugins/CMakeLists.txt index 21ffc3994..2bc7151a9 100644 --- a/src/plugins/CMakeLists.txt +++ b/src/plugins/CMakeLists.txt @@ -41,7 +41,7 @@ endif( BUILD_PLUGIN_console ) # # dbghelpplug # -if( WIN32 ) +if( WIN32 AND CMAKE_SIZEOF_VOID_P EQUAL 4 ) find_path( HAVE_DBGHELP_H dbghelp.h ) mark_as_advanced( HAVE_DBGHELP_H ) if( HAVE_DBGHELP_H ) @@ -49,7 +49,7 @@ if( WIN32 ) endif() endif() if( NOT DEFINED BUILD_PLUGIN_dbghelpplug ) - message( STATUS "Disabled dbghelpplug plugin target (requires WIN32 and HAVE_DBGHELP_H)" ) + message( STATUS "Disabled dbghelpplug plugin target (requires WIN32 and CMAKE_SIZEOF_VOID_P=4 and HAVE_DBGHELP_H)" ) endif() if( BUILD_PLUGIN_dbghelpplug ) message( STATUS "Creating target dbghelpplug" ) |