Author: akhaldi Date: Tue Feb 11 22:03:16 2014 New Revision: 62123
URL: http://svn.reactos.org/svn/reactos?rev=62123&view=rev Log: [FTUSB] * Introduce a PCH suitable for use without altering the 3rd party code. * Prepare the CMake scripts for PCH. CORE-7716
Added: trunk/reactos/drivers/bluetooth/fbtusb/precomp.h (with props) Modified: trunk/reactos/drivers/bluetooth/fbtusb/CMakeLists.txt
Modified: trunk/reactos/drivers/bluetooth/fbtusb/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/bluetooth/fbtusb/CM... ============================================================================== --- trunk/reactos/drivers/bluetooth/fbtusb/CMakeLists.txt [iso-8859-1] (original) +++ trunk/reactos/drivers/bluetooth/fbtusb/CMakeLists.txt [iso-8859-1] Tue Feb 11 22:03:16 2014 @@ -7,7 +7,8 @@ fbtpwr.c fbtrwr.c # fbtwmi.c - fbtusb.c) + fbtusb.c + precomp.h)
add_library(fbtusb SHARED ${SOURCE} fbtusb.rc)
@@ -19,4 +20,5 @@
set_module_type(fbtusb kernelmodedriver) add_importlibs(fbtusb ntoskrnl hal usbd) +add_pch(fbtusb precomp.h SOURCE) add_cd_file(TARGET fbtusb DESTINATION reactos/system32/drivers FOR all)
Added: trunk/reactos/drivers/bluetooth/fbtusb/precomp.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/bluetooth/fbtusb/pr... ============================================================================== --- trunk/reactos/drivers/bluetooth/fbtusb/precomp.h (added) +++ trunk/reactos/drivers/bluetooth/fbtusb/precomp.h [iso-8859-1] Tue Feb 11 22:03:16 2014 @@ -0,0 +1,14 @@ +#ifndef _FBTUSB_PCH_ +#define _FBTUSB_PCH_ + +#include <stdio.h> + +#include "fbtusb.h" +#include "fbtpnp.h" +#include "fbtpwr.h" +#include "fbtdev.h" +#include "fbtwmi.h" +#include "fbtrwr.h" +#include "fbtusr.h" + +#endif /* _FBTUSB_PCH_ */
Propchange: trunk/reactos/drivers/bluetooth/fbtusb/precomp.h ------------------------------------------------------------------------------ svn:eol-style = native