Re: Including .h files in SDK automatically
From: Bruce Eitman \(eMVP\) (beitmannospam_at_NOSPAM_applieddata.NOSPAM_net)
Date: 02/24/05
- Next message: arssa2020_at_yahoo.com: "Re: Exception suspend"
- Previous message: Paul G. Tobey [eMVP]: "Re: LAN91C111 driver keep reset itself"
- In reply to: Henrik: "Including .h files in SDK automatically"
- Next in thread: Henrik: "Re: Including .h files in SDK automatically"
- Reply: Henrik: "Re: Including .h files in SDK automatically"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 24 Feb 2005 10:58:41 -0500
There are probably other ways, but one way would be to copy the files to the
SDK folder when you build:
In sources add:
WINCETARGETFILES=CopyFilesToSDK
Add a makefile.inc to the folder:
CopyFilesToSDK:
if not EXIST $(_PROJECTSDKROOT)\Inc mkdir $(_PROJECTSDKROOT)\Inc
xcopy /I /D /Q <Your Head File(s)> $(_PROJECTSDKROOT)\Inc > nul
if not EXIST $(_PROJECTSDKROOT)\Lib mkdir $(_PROJECTSDKROOT)\Lib
xcopy /I /D /Q <Your Lib File(s)> $(_PROJECTSDKROOT)\Lib > nul
-- Bruce Eitman (eMVP) Senior Engineer beitman AT applieddata DOT net Applied Data Systems www.applieddata.net An ISO 9001:2000 Registered Company Microsoft WEP Gold-level Member "Henrik" <slaskhenrik@gmail.com> wrote in message news:1109237269.032686.122040@g14g2000cwa.googlegroups.com... > How do I make my feature copy files into the project's sdk directory? I > want, for example, the header file with the API to my custom driver to > be included when generating the SDK (if the feature has been added to > the platform). The simple way (which i have been using up until now) is > to manually add the files in the SDK configuration, but I would like > the features to manage themselves in this respect. > > Henrik >
- Next message: arssa2020_at_yahoo.com: "Re: Exception suspend"
- Previous message: Paul G. Tobey [eMVP]: "Re: LAN91C111 driver keep reset itself"
- In reply to: Henrik: "Including .h files in SDK automatically"
- Next in thread: Henrik: "Re: Including .h files in SDK automatically"
- Reply: Henrik: "Re: Including .h files in SDK automatically"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|
|