From 486a2d0e811fbafa45c7e8b59a3dfd9f473371e8 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Mon, 26 Jul 2010 18:49:24 +0000 Subject: [PATCH] [CMAKE] - Add chew and csq to build. svn path=/branches/cmake-bringup/; revision=48285 --- lib/CMakeLists.txt | 1 + lib/drivers/CMakeLists.txt | 11 +++++++++++ lib/drivers/chew/CMakeLists.txt | 4 ++++ lib/drivers/csq/CMakeLists.txt | 4 ++++ 4 files changed, 20 insertions(+) create mode 100644 lib/drivers/CMakeLists.txt create mode 100644 lib/drivers/chew/CMakeLists.txt create mode 100644 lib/drivers/csq/CMakeLists.txt diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index b934f03440e..5d47551df71 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -8,6 +8,7 @@ if(CMAKE_CROSSCOMPILING) add_subdirectory(3rdparty) add_subdirectory(atl) add_subdirectory(dnslib) +add_subdirectory(drivers) add_subdirectory(epsapi) add_subdirectory(lsalib) add_subdirectory(recyclebin) diff --git a/lib/drivers/CMakeLists.txt b/lib/drivers/CMakeLists.txt new file mode 100644 index 00000000000..12e7e0a5e76 --- /dev/null +++ b/lib/drivers/CMakeLists.txt @@ -0,0 +1,11 @@ + +if(CMAKE_CROSSCOMPILING) + +add_subdirectory(chew) +add_subdirectory(csq) +#add_subdirectory(ip) +#add_subdirectory(oskittcp) +#add_subdirectory(sound) + +else() +endif() \ No newline at end of file diff --git a/lib/drivers/chew/CMakeLists.txt b/lib/drivers/chew/CMakeLists.txt new file mode 100644 index 00000000000..178ac637f8c --- /dev/null +++ b/lib/drivers/chew/CMakeLists.txt @@ -0,0 +1,4 @@ + +add_definitions(-D_NTOSKRNL_) +add_library(chew workqueue.c) +add_dependencies(chew build_resources) \ No newline at end of file diff --git a/lib/drivers/csq/CMakeLists.txt b/lib/drivers/csq/CMakeLists.txt new file mode 100644 index 00000000000..c05495332ef --- /dev/null +++ b/lib/drivers/csq/CMakeLists.txt @@ -0,0 +1,4 @@ + +add_definitions(-D_NTOSKRNL_) +add_library(csq csq.c) +add_dependencies(csq build_resources) \ No newline at end of file -- 2.17.1