Fixed README.md

Signed-off-by: Mikhail Grigorev <sleuthhound@gmail.com>
This commit is contained in:
Mikhail Grigorev 2014-05-23 13:23:59 +06:00
parent 0cf33b7b9e
commit 9d9239f7cb
2 changed files with 17 additions and 3 deletions

View File

@ -24,6 +24,7 @@ Unzip it to a convenient directory, thus get the following directory structure.<
Add the search path for the modules of the project in Delphi IDE (Tools-Options-Delphi Options-Library-Library path)
```
<PROJECT_ROOT>\source
<PROJECT_ROOT>\source\utils
<PROJECT_ROOT>\source\component
<PROJECT_ROOT>\resource\facedetectxml
```
@ -32,6 +33,7 @@ Additionally, you can specify the path to the library header files FFMPEG
```
<PROJECT_ROOT>\source\ffmpeg
<PROJECT_ROOT>\source\sdl
<PROJECT_ROOT>\source\opengl
```
Examples of using FFMPEG library header files are in the
```

View File

@ -9,6 +9,9 @@
<Projects Include="cMatchTemplate\cMatchTemplate.dproj">
<Dependencies/>
</Projects>
<Projects Include="cFFmpegIPCamSource\cFFmpegIPCamSource.dproj">
<Dependencies/>
</Projects>
</ItemGroup>
<ProjectExtensions>
<Borland.Personality>Default.Personality.12</Borland.Personality>
@ -35,14 +38,23 @@
<Target Name="cMatchTemplate:Make">
<MSBuild Projects="cMatchTemplate\cMatchTemplate.dproj" Targets="Make"/>
</Target>
<Target Name="cFFmpegIPCamSource">
<MSBuild Projects="cFFmpegIPCamSource\cFFmpegIPCamSource.dproj"/>
</Target>
<Target Name="cFFmpegIPCamSource:Clean">
<MSBuild Projects="cFFmpegIPCamSource\cFFmpegIPCamSource.dproj" Targets="Clean"/>
</Target>
<Target Name="cFFmpegIPCamSource:Make">
<MSBuild Projects="cFFmpegIPCamSource\cFFmpegIPCamSource.dproj" Targets="Make"/>
</Target>
<Target Name="Build">
<CallTarget Targets="cCameraCapture;cMatchTemplate"/>
<CallTarget Targets="cCameraCapture;cMatchTemplate;cFFmpegIPCamSource"/>
</Target>
<Target Name="Clean">
<CallTarget Targets="cCameraCapture:Clean;cMatchTemplate:Clean"/>
<CallTarget Targets="cCameraCapture:Clean;cMatchTemplate:Clean;cFFmpegIPCamSource:Clean"/>
</Target>
<Target Name="Make">
<CallTarget Targets="cCameraCapture:Make;cMatchTemplate:Make"/>
<CallTarget Targets="cCameraCapture:Make;cMatchTemplate:Make;cFFmpegIPCamSource:Make"/>
</Target>
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
</Project>