-
Notifications
You must be signed in to change notification settings - Fork 307
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 #63 from sz3/stdin
cli update: read input filenames from stdin
- Loading branch information
Showing
8 changed files
with
282 additions
and
50 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
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 |
---|---|---|
|
@@ -20,6 +20,7 @@ target_link_libraries(cimbar | |
wirehair | ||
zstd | ||
${OPENCV_LIBS} | ||
${CPPFILESYSTEM} | ||
) | ||
|
||
add_custom_command( | ||
|
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
Empty file.
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,16 @@ | ||
from os.path import join, realpath, dirname | ||
from tempfile import TemporaryDirectory | ||
|
||
CIMBAR_SRC = realpath(join(dirname(realpath(__file__)), '..', '..')) | ||
BIN_DIR = join(CIMBAR_SRC, 'dist', 'bin') | ||
|
||
|
||
class TestDirMixin(): | ||
def setUp(self): | ||
self.working_dir = TemporaryDirectory() | ||
super().setUp() | ||
|
||
def tearDown(self): | ||
super().tearDown() | ||
with self.working_dir: | ||
pass |
Oops, something went wrong.