Author: akhaldi
Date: Sat Sep 4 13:16:29 2010
New Revision: 48694
URL:
http://svn.reactos.org/svn/reactos?rev=48694&view=rev
Log:
[CMAKE]
- Add buslogic to build.
- Fix a typo.
Added:
branches/cmake-bringup/drivers/storage/port/CMakeLists.txt (with props)
branches/cmake-bringup/drivers/storage/port/buslogic/CMakeLists.txt (with props)
branches/cmake-bringup/drivers/storage/scsiport/libscsiport.a (with props)
Modified:
branches/cmake-bringup/drivers/bus/acpi/CMakeLists.txt
branches/cmake-bringup/drivers/storage/CMakeLists.txt
Modified: branches/cmake-bringup/drivers/bus/acpi/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/drivers/bus/acpi/…
==============================================================================
--- branches/cmake-bringup/drivers/bus/acpi/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/drivers/bus/acpi/CMakeLists.txt [iso-8859-1] Sat Sep 4
13:16:29 2010
@@ -124,8 +124,6 @@
set_target_properties(acpica PROPERTIES COMPILE_DEFINITIONS
"ACPI_USE_LOCAL_CACHE")
-spec2def(acpi ${CMAKE_CURRENT_SOURCE_DIR}/acpi.spec
${CMAKE_CURRENT_BINARY_DIR}/acpi.def)
-
add_library(acpi SHARED
busmgr/bus.c
busmgr/button.c
Modified: branches/cmake-bringup/drivers/storage/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/drivers/storage/C…
==============================================================================
--- branches/cmake-bringup/drivers/storage/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/drivers/storage/CMakeLists.txt [iso-8859-1] Sat Sep 4 13:16:29
2010
@@ -1,3 +1,4 @@
add_subdirectory(ide)
+add_subdirectory(port)
add_subdirectory(scsiport)
Added: branches/cmake-bringup/drivers/storage/port/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/drivers/storage/p…
==============================================================================
--- branches/cmake-bringup/drivers/storage/port/CMakeLists.txt (added)
+++ branches/cmake-bringup/drivers/storage/port/CMakeLists.txt [iso-8859-1] Sat Sep 4
13:16:29 2010
@@ -1,0 +1,2 @@
+
+add_subdirectory(buslogic)
Propchange: branches/cmake-bringup/drivers/storage/port/CMakeLists.txt
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/cmake-bringup/drivers/storage/port/buslogic/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/drivers/storage/p…
==============================================================================
--- branches/cmake-bringup/drivers/storage/port/buslogic/CMakeLists.txt (added)
+++ branches/cmake-bringup/drivers/storage/port/buslogic/CMakeLists.txt [iso-8859-1] Sat
Sep 4 13:16:29 2010
@@ -1,0 +1,12 @@
+
+set(CMAKE_C_CREATE_SHARED_LIBRARY "<CMAKE_C_COMPILER>
<CMAKE_SHARED_LIBRARY_C_FLAGS> <LINK_FLAGS>
<CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS> -o <TARGET> <OBJECTS>
<LINK_LIBRARIES>")
+
+add_library(buslogic SHARED BusLogic958.c BusLogic958.rc)
+
+set_target_properties(buslogic PROPERTIES LINK_FLAGS "-Wl,-entry,_DriverEntry@8
-Wl,--image-base,0x00010000 -Wl,--exclude-all-symbols -Wl,--subsystem,native" SUFFIX
".sys")
+
+target_link_libraries(buslogic
+ ${REACTOS_SOURCE_DIR}/drivers/storage/scsiport/libscsiport.a
+ libcntpr)
+
+add_dependencies(buslogic psdk bugcodes)
Propchange: branches/cmake-bringup/drivers/storage/port/buslogic/CMakeLists.txt
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/cmake-bringup/drivers/storage/scsiport/libscsiport.a
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/drivers/storage/s…
==============================================================================
Binary file - no diff available.
Propchange: branches/cmake-bringup/drivers/storage/scsiport/libscsiport.a
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream