diff options
author | df@pippilotta.erinye.com <> | 2007-05-02 15:50:08 +0200 |
---|---|---|
committer | df@pippilotta.erinye.com <> | 2007-05-02 15:50:08 +0200 |
commit | 971992ea9a15f59047a51b12332d7274331c6d49 (patch) | |
tree | 295586b6b4b8efbda43f17aae9b6de432425015b /CMakeLists.txt | |
parent | 75c31f6bb9d257e3b3d19e9f4798f08af1df1158 (diff) | |
download | mariadb-git-971992ea9a15f59047a51b12332d7274331c6d49.tar.gz |
generate map files on windows
Diffstat (limited to 'CMakeLists.txt')
-rwxr-xr-x | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3a286071bb0..6e6ac835b5d 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -116,6 +116,9 @@ IF(CMAKE_GENERATOR MATCHES "Visual Studio 7" OR STRING(REPLACE "/MDd" "/MTd" CMAKE_CXX_FLAGS_DEBUG ${CMAKE_CXX_FLAGS_DEBUG}) + # generate map files + SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MAP /MAPINFO:EXPORTS") + # remove support for Exception handling STRING(REPLACE "/GX" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) STRING(REPLACE "/EHsc" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) |