-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add demo for aoe_add_test() and aoe_add_example()
- Loading branch information
yarten
committed
Jan 13, 2024
1 parent
2a339f4
commit b9f32a1
Showing
5 changed files
with
60 additions
and
2 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
12 changes: 12 additions & 0 deletions
12
02-almost_full_example/modules/mod1/lib2/example/lib2-case1.cpp
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,12 @@ | ||
// | ||
// Created by yarten on 24-1-13. | ||
// | ||
|
||
#include <demo/lib2.h> | ||
|
||
int main() | ||
{ | ||
demo::Lib2 lib2("Example with case"); | ||
lib2.sayHello(); | ||
return 0; | ||
} |
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,12 @@ | ||
// | ||
// Created by yarten on 24-1-13. | ||
// | ||
|
||
#include <demo/lib2.h> | ||
|
||
int main() | ||
{ | ||
demo::Lib2 lib2("Exmaple"); | ||
lib2.sayHello(); | ||
return 0; | ||
} |
12 changes: 12 additions & 0 deletions
12
02-almost_full_example/modules/mod1/lib2/test/lib2-case1.cpp
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,12 @@ | ||
// | ||
// Created by yarten on 24-1-13. | ||
// | ||
|
||
#include <demo/lib2.h> | ||
|
||
int main() | ||
{ | ||
demo::Lib2 lib2("Test with case"); | ||
lib2.sayHello(); | ||
return 0; | ||
} |
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