-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[circle-verify] Revise to use mio-circle06
This will revise to use mio-circle06. ONE-DCO-1.0-Signed-off-by: SaeHie Park <[email protected]>
- Loading branch information
1 parent
ff51c1d
commit 76662be
Showing
2 changed files
with
5 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
if(NOT TARGET mio_circle05) | ||
message(STATUS "Skip circle-verify: mio_circle05 not found") | ||
if(NOT TARGET mio_circle06) | ||
message(STATUS "Skip circle-verify: mio_circle06 not found") | ||
return() | ||
endif(NOT TARGET mio_circle05) | ||
endif(NOT TARGET mio_circle06) | ||
|
||
file(GLOB_RECURSE SOURCES "src/*.cpp") | ||
|
||
add_executable(circle-verify ${SOURCES}) | ||
target_include_directories(circle-verify PRIVATE src) | ||
target_link_libraries(circle-verify arser) | ||
target_link_libraries(circle-verify mio_circle05) | ||
target_link_libraries(circle-verify mio_circle06) | ||
target_link_libraries(circle-verify safemain) | ||
target_link_libraries(circle-verify cwrap) | ||
target_link_libraries(circle-verify foder) |
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,5 +1,5 @@ | ||
require("arser") | ||
require("mio-circle05") | ||
require("mio-circle06") | ||
require("safemain") | ||
require("cwrap") | ||
require("foder") |