-
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
1 parent
d93d758
commit f99b7a4
Showing
32 changed files
with
145 additions
and
341 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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
cmake_minimum_required(VERSION 3.22) | ||
project(cycles-project LANGUAGES CXX VERSION 0.0.1) | ||
# | ||
set (CMAKE_CXX_STANDARD 17) | ||
set (CMAKE_CXX_STANDARD_REQUIRED ON) | ||
set (CMAKE_EXPORT_COMPILE_COMMANDS ON) | ||
Include(FetchContent) | ||
|
||
# =================== | ||
# header only library | ||
# ------------------- | ||
add_library(cycles INTERFACE) | ||
target_include_directories(cycles INTERFACE include/) | ||
# | ||
add_subdirectory(examples) | ||
# | ||
add_subdirectory(tests) |
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 was deleted.
Oops, something went wrong.
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,17 @@ | ||
|
||
# | ||
add_executable(example1 basic_examples/app_example1.cpp) | ||
target_link_libraries(example1 PRIVATE cycles) | ||
|
||
add_executable(example2 basic_examples/app_example2.cpp) | ||
target_link_libraries(example2 PRIVATE cycles) | ||
|
||
add_executable(example3 basic_examples/app_example3.cpp) | ||
target_link_libraries(example3 PRIVATE cycles) | ||
|
||
add_executable(demo demo_cptr/demo.cpp) | ||
target_link_libraries(demo PRIVATE cycles) | ||
|
||
add_executable(demo0_cycles_test_graph demo_cptr/demo0_cycles_test_graph.cpp) | ||
target_link_libraries(demo0_cycles_test_graph PRIVATE cycles) | ||
|
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.