From 05b70f3ba26e36dcb8bbb7a8aa731d414ddf7a53 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Tue, 27 Jul 2010 11:01:39 +0000 Subject: [PATCH] [CMAKE] - Add idna, normalize and scripts to build. svn path=/branches/cmake-bringup/; revision=48301 --- lib/CMakeLists.txt | 2 +- lib/nls/CMakeLists.txt | 4 ++++ lib/nls/idna/CMakeLists.txt | 8 ++++++++ lib/nls/normalize/CMakeLists.txt | 8 ++++++++ lib/nls/scripts/CMakeLists.txt | 8 ++++++++ 5 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 lib/nls/CMakeLists.txt create mode 100644 lib/nls/idna/CMakeLists.txt create mode 100644 lib/nls/normalize/CMakeLists.txt create mode 100644 lib/nls/scripts/CMakeLists.txt diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index 2aa61e5d70a..209acd6009a 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -12,7 +12,7 @@ add_subdirectory(drivers) add_subdirectory(epsapi) #add_subdirectory(fslib) add_subdirectory(lsalib) -#add_subdirectory(nls) +add_subdirectory(nls) #add_subdirectory(pseh) add_subdirectory(recyclebin) add_subdirectory(rossym) diff --git a/lib/nls/CMakeLists.txt b/lib/nls/CMakeLists.txt new file mode 100644 index 00000000000..4417ccc79e2 --- /dev/null +++ b/lib/nls/CMakeLists.txt @@ -0,0 +1,4 @@ + +add_subdirectory(idna) +add_subdirectory(normalize) +add_subdirectory(scripts) diff --git a/lib/nls/idna/CMakeLists.txt b/lib/nls/idna/CMakeLists.txt new file mode 100644 index 00000000000..4a69585b0a4 --- /dev/null +++ b/lib/nls/idna/CMakeLists.txt @@ -0,0 +1,8 @@ + +include_directories(${REACTOS_SOURCE_DIR}/lib/3rdparty/icu4ros/icu/source/common) + +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -UWINVER -DWINVER=0x600 -fno-exceptions -fno-rtti") + +file(GLOB_RECURSE SOURCE "*.cpp") + +add_library(idna ${SOURCE}) \ No newline at end of file diff --git a/lib/nls/normalize/CMakeLists.txt b/lib/nls/normalize/CMakeLists.txt new file mode 100644 index 00000000000..4abc7833622 --- /dev/null +++ b/lib/nls/normalize/CMakeLists.txt @@ -0,0 +1,8 @@ + +include_directories(${REACTOS_SOURCE_DIR}/lib/3rdparty/icu4ros/icu/source/common) + +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -UWINVER -DWINVER=0x600 -fno-exceptions -fno-rtti") + +file(GLOB_RECURSE SOURCE "*.cpp") + +add_library(normalize ${SOURCE}) \ No newline at end of file diff --git a/lib/nls/scripts/CMakeLists.txt b/lib/nls/scripts/CMakeLists.txt new file mode 100644 index 00000000000..04fae8b3f05 --- /dev/null +++ b/lib/nls/scripts/CMakeLists.txt @@ -0,0 +1,8 @@ + +include_directories(${REACTOS_SOURCE_DIR}/lib/3rdparty/icu4ros/icu/source/common) + +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -UWINVER -DWINVER=0x600 -fno-exceptions -fno-rtti") + +file(GLOB_RECURSE SOURCE "*.cpp") + +add_library(scripts ${SOURCE}) \ No newline at end of file -- 2.17.1