mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[CMAKE]
- Add ext2lib, ntfslib, vfatlib and vfatxlib to build. svn path=/branches/cmake-bringup/; revision=48304
This commit is contained in:
parent
e16d438002
commit
94fd5aceb2
6 changed files with 23 additions and 1 deletions
|
@ -10,7 +10,7 @@ add_subdirectory(atl)
|
|||
add_subdirectory(dnslib)
|
||||
add_subdirectory(drivers)
|
||||
add_subdirectory(epsapi)
|
||||
#add_subdirectory(fslib)
|
||||
add_subdirectory(fslib)
|
||||
add_subdirectory(lsalib)
|
||||
add_subdirectory(nls)
|
||||
#add_subdirectory(pseh)
|
||||
|
|
5
lib/fslib/CMakeLists.txt
Normal file
5
lib/fslib/CMakeLists.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
|
||||
add_subdirectory(ext2lib)
|
||||
add_subdirectory(ntfslib)
|
||||
add_subdirectory(vfatlib)
|
||||
add_subdirectory(vfatxlib)
|
4
lib/fslib/ext2lib/CMakeLists.txt
Normal file
4
lib/fslib/ext2lib/CMakeLists.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
include_directories(.)
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
add_library(ext2lib ${SOURCE})
|
4
lib/fslib/ntfslib/CMakeLists.txt
Normal file
4
lib/fslib/ntfslib/CMakeLists.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
include_directories(.)
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
add_library(ntfslib ${SOURCE})
|
5
lib/fslib/vfatlib/CMakeLists.txt
Normal file
5
lib/fslib/vfatlib/CMakeLists.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
|
||||
include_directories(.)
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
add_library(vfatlib ${SOURCE})
|
||||
add_dependencies(vfatlib psdk)
|
4
lib/fslib/vfatxlib/CMakeLists.txt
Normal file
4
lib/fslib/vfatxlib/CMakeLists.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
include_directories(.)
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
add_library(vfatxlib ${SOURCE})
|
Loading…
Reference in a new issue