-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathProject.meta
65 lines (56 loc) · 2.11 KB
/
Project.meta
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Copyright (c) 2016 E.S.R. Labs. All rights reserved.
#
# NOTICE: All information contained herein is, and remains
# the property of E.S.R.Labs and its suppliers, if any.
# The intellectual and technical concepts contained herein are
# proprietary to E.S.R.Labs and its suppliers and may be covered
# by German and Foreign Patents, patents in process, and are protected
# by trade secret or copyright law.
# Dissemination of this information or reproduction of this material
# is strictly forbidden unless prior written permission is obtained
# from E.S.R.Labs.
Project default: Main {
LibraryConfig default {
Files "src/mindroid/**/*.cpp"
IncludeDir "src", inherit: true
Dependency "src/tinyxml2", config: default
}
ExecutableConfig Main {
Files "src/main/Main.cpp"
Files "examples/Concurrency/src/**/*.cpp"
Files "examples/Eliza/gen/**/*.cpp"
Files "examples/Eliza/src/**/*.cpp"
Files "examples/Services/src/**/*.cpp"
IncludeDir "."
IncludeDir "src"
IncludeDir "examples/Concurrency/src"
IncludeDir "examples/Eliza/src"
IncludeDir "examples/Eliza/gen"
IncludeDir "examples/Services/src"
ArtifactName "Main"
Dependency config: default
ExternalLibrary "pthread"
DefaultToolchain CLANG {
Compiler CPP {
Flags add: "-g -std=c++11 -pthread -fexceptions -frtti"
Flags add: "-Wall -Wextra -Wno-unused-parameter -Wno-strict-aliasing"
}
}
}
ExecutableConfig Tests {
Files "tests/mindroid/**/*.cpp"
Files "googletest/src/gtest-all.cc"
IncludeDir "tests"
IncludeDir "googletest"
IncludeDir "googletest/include"
ArtifactName "Tests"
Dependency config: default
ExternalLibrary "pthread"
DefaultToolchain CLANG {
Compiler CPP {
Flags add: "-g -std=c++11 -pthread -fexceptions -frtti"
Flags add: "-Wall -Wextra -Wno-unused-parameter -Wno-strict-aliasing -Wno-sign-compare"
}
}
}
}