-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Géry Casiez
committed
May 15, 2024
1 parent
c2c8303
commit 52c4adb
Showing
6 changed files
with
28 additions
and
16 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 |
---|---|---|
@@ -1,13 +1,19 @@ | ||
all: testcplusplus | ||
PYTHON = python3 | ||
|
||
PYTHON=python3 | ||
all: liblag compilemain testcplusplus | ||
|
||
main: main | ||
qmake6 ; make \ | ||
compilemain: | ||
echo "Compiling main.cpp" ; \ | ||
qmake6 ; \ | ||
make | ||
|
||
liblag: lag/liblag.a | ||
cd lag ; qmake6 ; make | ||
liblag: | ||
echo "Compiling liblag" ; \ | ||
cd lag ; \ | ||
qmake6 ; \ | ||
make | ||
|
||
testcplusplus: liblag main | ||
./main | ||
$(PYTHON) ../test.py cpp strokesPredicted.csv | ||
testcplusplus: | ||
echo "Running test" ; \ | ||
./main ; \ | ||
$(PYTHON) ../test.py cpp strokesPredicted.csv |
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
Large diffs are not rendered by default.
Oops, something went wrong.