From 7965b0bbf70252dd3fc286cdf7f57c782347510a Mon Sep 17 00:00:00 2001 From: Peter Lemenkov Date: Wed, 2 Jun 2010 11:12:08 +0000 Subject: [PATCH] Fix MOD_NAME passing to gcc Signed-off-by: Peter Lemenkov git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@1944 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- cmake/module.rules.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/module.rules.txt b/cmake/module.rules.txt index 80ec94e7..6299ee0f 100644 --- a/cmake/module.rules.txt +++ b/cmake/module.rules.txt @@ -6,7 +6,7 @@ ADD_LIBRARY(sems_${sems_module_name} SHARED ${${sems_module_name}_SRCS}) -ADD_DEFINITIONS(-DMOD_NAME="\\\"${sems_module_name}\\\"") +ADD_DEFINITIONS(-DMOD_NAME=\\\"${sems_module_name}\\\") # all modules should be linked against ${CMAKE_DL_LIBS} at least # and with additional ${sems_module_libs} if they exists