diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 77f7c7e..577ab7b 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,7 +1,7 @@ option(LIBICSNEO_BUILD_C_SIMPLE_EXAMPLE "Build the command-line simple C example." ON) -option(LIBICSNEO_BUILD_C_LEGACY_INTERACTIVE_EXAMPLE "Build the command-line interactive C example." OFF) -option(LIBICSNEO_BUILD_C_LEGACY_SIMPLE_EXAMPLE "Build the command-line simple C example." ON) -option(LIBICSNEO_BUILD_C_LEGACY_LEGACY_EXAMPLE "Build the command-line simple C example." OFF) +option(LIBICSNEO_BUILD_C_OLD_INTERACTIVE_EXAMPLE "Build the command-line interactive C example." ON) +option(LIBICSNEO_BUILD_C_OLD_SIMPLE_EXAMPLE "Build the command-line simple C example." ON) +option(LIBICSNEO_BUILD_C_LEGACY_EXAMPLE "Build the command-line simple C example." ON) option(LIBICSNEO_BUILD_CPP_SIMPLE_EXAMPLE "Build the simple C++ example." ON) option(LIBICSNEO_BUILD_CPP_INTERACTIVE_EXAMPLE "Build the command-line interactive C++ example." ON) option(LIBICSNEO_BUILD_CPP_A2B_EXAMPLE "Build the A2B example." ON) @@ -20,16 +20,16 @@ if(LIBICSNEO_BUILD_C_SIMPLE_EXAMPLE) add_subdirectory(c/simple) endif() -if(LIBICSNEO_BUILD_C_LEGACY_INTERACTIVE_EXAMPLE) - add_subdirectory(c_legacy/interactive) +if(LIBICSNEO_BUILD_C_OLD_INTERACTIVE_EXAMPLE) + add_subdirectory(c_old/interactive) endif() -if(LIBICSNEO_BUILD_C_LEGACY_SIMPLE_EXAMPLE) - add_subdirectory(c_legacy/simple) +if(LIBICSNEO_BUILD_C_OLD_SIMPLE_EXAMPLE) + add_subdirectory(c_old/simple) endif() -if(LIBICSNEO_BUILD_C_LEGACY_LEGACY_EXAMPLE) - add_subdirectory(c_legacy/legacy) +if(LIBICSNEO_BUILD_C_OLD_LEGACY_EXAMPLE) + add_subdirectory(c_old/legacy) endif() if(LIBICSNEO_BUILD_CPP_SIMPLE_EXAMPLE) diff --git a/examples/c_legacy/interactive/CMakeLists.txt b/examples/c_old/interactive/CMakeLists.txt similarity index 100% rename from examples/c_legacy/interactive/CMakeLists.txt rename to examples/c_old/interactive/CMakeLists.txt diff --git a/examples/c_legacy/interactive/README.md b/examples/c_old/interactive/README.md similarity index 100% rename from examples/c_legacy/interactive/README.md rename to examples/c_old/interactive/README.md diff --git a/examples/c_legacy/interactive/src/main.c b/examples/c_old/interactive/src/main.c similarity index 100% rename from examples/c_legacy/interactive/src/main.c rename to examples/c_old/interactive/src/main.c diff --git a/examples/c_legacy/legacy/CMakeLists.txt b/examples/c_old/legacy/CMakeLists.txt similarity index 100% rename from examples/c_legacy/legacy/CMakeLists.txt rename to examples/c_old/legacy/CMakeLists.txt diff --git a/examples/c_legacy/legacy/README.md b/examples/c_old/legacy/README.md similarity index 100% rename from examples/c_legacy/legacy/README.md rename to examples/c_old/legacy/README.md diff --git a/examples/c_legacy/legacy/deviceSettings/main.c b/examples/c_old/legacy/deviceSettings/main.c similarity index 100% rename from examples/c_legacy/legacy/deviceSettings/main.c rename to examples/c_old/legacy/deviceSettings/main.c diff --git a/examples/c_legacy/legacy/lin/main.c b/examples/c_old/legacy/lin/main.c similarity index 100% rename from examples/c_legacy/legacy/lin/main.c rename to examples/c_old/legacy/lin/main.c diff --git a/examples/c_legacy/simple/CMakeLists.txt b/examples/c_old/simple/CMakeLists.txt similarity index 100% rename from examples/c_legacy/simple/CMakeLists.txt rename to examples/c_old/simple/CMakeLists.txt diff --git a/examples/c_legacy/simple/README.md b/examples/c_old/simple/README.md similarity index 100% rename from examples/c_legacy/simple/README.md rename to examples/c_old/simple/README.md diff --git a/examples/c_legacy/simple/lin/main.c b/examples/c_old/simple/lin/main.c similarity index 100% rename from examples/c_legacy/simple/lin/main.c rename to examples/c_old/simple/lin/main.c