Author: akhaldi
Date: Sun Jul 25 19:01:01 2010
New Revision: 48257
URL:
http://svn.reactos.org/svn/reactos?rev=48257&view=rev
Log:
[CMAKE]
- Properly remove the items from the list.
Modified:
branches/cmake-bringup/tools/unicode/CMakeLists.txt
Modified: branches/cmake-bringup/tools/unicode/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/tools/unicode/CMa…
==============================================================================
--- branches/cmake-bringup/tools/unicode/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/tools/unicode/CMakeLists.txt [iso-8859-1] Sun Jul 25 19:01:01
2010
@@ -1,7 +1,8 @@
file(GLOB_RECURSE SOURCE "*.c")
-string(REGEX REPLACE "fold.c" "" SOURCE "${SOURCE}")
-string(REGEX REPLACE "sortkey.c" "" SOURCE "${SOURCE}")
+
+LIST(REMOVE_ITEM SOURCE "fold.c")
+LIST(REMOVE_ITEM SOURCE "sortkey.c")
add_definitions(-DWINE_UNICODE_API= )