forked from libfann/fann
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request libfann#27 from lasote/master
Biicode Dependency Manager support
- Loading branch information
Showing
3 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Biicode configuration file | ||
|
||
[requirements] | ||
biicode/cmake: 3 | ||
google/gtest: 10 | ||
|
||
[parent] | ||
# The parent version of this block. Must match folder name. E.g. | ||
# user/block # No version number means not published yet | ||
# You can change it to publish to a different track, and change version, e.g. | ||
# user/block(track): 7 | ||
lasote/fann: 0 | ||
|
||
[paths] | ||
# Local directories to look for headers (within block) | ||
# / | ||
# include | ||
src | ||
src/include | ||
|
||
|
||
[dependencies] | ||
# Manual adjust file implicit dependencies, add (+), remove (-), or overwrite (=) | ||
# hello.h + hello_imp.cpp hello_imp2.cpp | ||
# *.h + *.cpp | ||
|
||
[mains] | ||
# Manual adjust of files that define an executable | ||
# !main.cpp # Do not build executable from this file | ||
# main2.cpp # Build it (it doesnt have a main() function, but maybe it includes it) | ||
|
||
[hooks] | ||
# These are defined equal to [dependencies],files names matching bii*stage*hook.py | ||
# will be launched as python scripts at stage = {post_process, clean} | ||
# CMakeLists.txt + bii/my_post_process1_hook.py bii_clean_hook.py | ||
|
||
[includes] | ||
gtest/gtest.h: google/gtest/include | ||
|
||
[data] | ||
# Manually define data files dependencies, that will be copied to bin for execution | ||
# By default they are copied to bin/user/block/... which should be taken into account | ||
# when loading from disk such data | ||
# image.cpp + image.jpg # code should write open("user/block/image.jpg") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
bin/* | ||
VS2010/* | ||
lib/* | ||
cmake/* |