Skip to content
This repository was archived by the owner on Feb 11, 2021. It is now read-only.

Use * in build command #1

Merged
merged 2 commits into from
Aug 16, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cli-template.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
build:
- c++ -o myapp.o src/app.cpp
- c++ -o myapp.o src/*.cpp
files:
- .gitignore
- src/app.cpp
main: src/app.cpp
command: ./myapp.o
2 changes: 1 addition & 1 deletion codecheck.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
build:
- c++ -o myapp.o src/app.cpp
- c++ -o myapp.o src/*.cpp
env:
APP_COMMAND: ./myapp.o
test: mocha