mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 13:53:41 +00:00
[CMAKE]
- Add idna, normalize and scripts to build. svn path=/branches/cmake-bringup/; revision=48301
This commit is contained in:
parent
1e82e45439
commit
05b70f3ba2
5 changed files with 29 additions and 1 deletions
|
@ -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)
|
||||
|
|
4
lib/nls/CMakeLists.txt
Normal file
4
lib/nls/CMakeLists.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
add_subdirectory(idna)
|
||||
add_subdirectory(normalize)
|
||||
add_subdirectory(scripts)
|
8
lib/nls/idna/CMakeLists.txt
Normal file
8
lib/nls/idna/CMakeLists.txt
Normal file
|
@ -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})
|
8
lib/nls/normalize/CMakeLists.txt
Normal file
8
lib/nls/normalize/CMakeLists.txt
Normal file
|
@ -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})
|
8
lib/nls/scripts/CMakeLists.txt
Normal file
8
lib/nls/scripts/CMakeLists.txt
Normal file
|
@ -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})
|
Loading…
Add table
Add a link
Reference in a new issue