Subject | Hash | Author | Date (UTC) |
---|---|---|---|
master first pass | a15417f304e070121e34272eaedf1e51fce5f1fd | mbusenitz | 2015-02-26 06:00:11 |
Squashed 'test/plank/' content from commit 09a9867 | 486e835d9a925e450abfb6dfce9437e808b5cf0f | mbusenitz | 2015-02-26 05:29:41 |
init | 4d1b6b27cb5dc364239073fa755a549b817031b9 | mbusenitz | 2015-02-26 05:29:35 |
File | Lines added | Lines deleted |
---|---|---|
.gitignore | 2 | 0 |
def.gypi | 6 | 0 |
test/lib/spawn-empty | 1 | 0 |
test/src/main.cpp | 10 | 0 |
test/test.gyp | 18 | 0 |
File .gitignore added (mode: 100644) (index 0000000..c24cd6e) | |||
1 | .DS_Store | ||
2 | test/build/ |
File def.gypi added (mode: 100644) (index 0000000..78c24d2) | |||
1 | { | ||
2 | 'target_defaults': { | ||
3 | 'sources': [ | ||
4 | ] | ||
5 | } | ||
6 | } |
File test/lib/spawn-empty added (mode: 120000) (index 0000000..c25bddb) | |||
1 | ../.. |
File test/src/main.cpp added (mode: 100644) (index 0000000..27c40af) | |||
1 | #include <iostream> | ||
2 | |||
3 | #include <plank/src/test.h> | ||
4 | |||
5 | int main(int argc, const char * argv[]) | ||
6 | { | ||
7 | ASSERT(1); | ||
8 | std::cout << "hello test cases" << std::endl; | ||
9 | return 0; | ||
10 | } |
File test/test.gyp added (mode: 100644) (index 0000000..aeaa5a3) | |||
1 | { | ||
2 | 'includes':[ | ||
3 | 'lib/spawn-empty/def.gypi', | ||
4 | 'plank/def/mac-targets.gypi', | ||
5 | 'plank/def/cpp11.gypi' | ||
6 | ],#includes | ||
7 | 'target_defaults': { | ||
8 | 'target_name': 'test', | ||
9 | 'type': 'executable', | ||
10 | 'sources': [ | ||
11 | 'src/main.cpp', | ||
12 | ], #sources | ||
13 | 'include_dirs': [ | ||
14 | 'plank/src/', | ||
15 | '.' | ||
16 | ], #include_dirs | ||
17 | }, #target_defaults | ||
18 | } |