From 30e6fdc2052480fbec54a90ecde767c26480da8b Mon Sep 17 00:00:00 2001 From: Chuck Atkins <chuck.atkins@kitware.com> Date: Thu, 22 Jun 2017 09:02:13 -0400 Subject: [PATCH] Make experimental examples option to build --- CMakeLists.txt | 3 ++- examples/CMakeLists.txt | 5 ++++- examples/experimental/CMakeLists.txt | 2 ++ examples/experimental/runtimeconfig/CMakeLists.txt | 1 + .../runtimeconfig/{ => configs}/grandSchema.xml | 0 .../{ => configs}/multipleIOResolutions.xml | 0 .../{ => configs}/multipleTransformedVariables.xml | 0 .../experimental/runtimeconfig/hello/CMakeLists.txt | 11 +++++++++++ 8 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 examples/experimental/runtimeconfig/CMakeLists.txt rename examples/experimental/runtimeconfig/{ => configs}/grandSchema.xml (100%) rename examples/experimental/runtimeconfig/{ => configs}/multipleIOResolutions.xml (100%) rename examples/experimental/runtimeconfig/{ => configs}/multipleTransformedVariables.xml (100%) create mode 100644 examples/experimental/runtimeconfig/hello/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index fda59429e..18651ccb8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -111,7 +111,8 @@ add_subdirectory(bindings) #------------------------------------------------------------------------------# # Examples #------------------------------------------------------------------------------# -option(ADIOS2_BUILD_EXAMPLES "Build ADIOS examples" ON) +option(ADIOS2_BUILD_EXAMPLES "Build examples" ON) +option(ADIOS2_BUILD_EXAMPLES_EXPERIMENTAL "Build experimental examples" OFF) if(ADIOS2_BUILD_EXAMPLES) add_subdirectory(examples) endif() diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 0ea4819bc..7f606ea7f 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -6,4 +6,7 @@ add_subdirectory(basics) add_subdirectory(hello) add_subdirectory(heatTransfer) -add_subdirectory(experimental) + +if(ADIOS2_BUILD_EXAMPLES_EXPERIMENTAL) + add_subdirectory(experimental) +endif() diff --git a/examples/experimental/CMakeLists.txt b/examples/experimental/CMakeLists.txt index 95b0ee655..00e3f8c9d 100644 --- a/examples/experimental/CMakeLists.txt +++ b/examples/experimental/CMakeLists.txt @@ -6,3 +6,5 @@ if(ADIOS2_HAVE_ADIOS1) add_subdirectory(multistep) endif() + +add_subdirectory(runtimeconfig) diff --git a/examples/experimental/runtimeconfig/CMakeLists.txt b/examples/experimental/runtimeconfig/CMakeLists.txt new file mode 100644 index 000000000..33bde8ad1 --- /dev/null +++ b/examples/experimental/runtimeconfig/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory(hello) diff --git a/examples/experimental/runtimeconfig/grandSchema.xml b/examples/experimental/runtimeconfig/configs/grandSchema.xml similarity index 100% rename from examples/experimental/runtimeconfig/grandSchema.xml rename to examples/experimental/runtimeconfig/configs/grandSchema.xml diff --git a/examples/experimental/runtimeconfig/multipleIOResolutions.xml b/examples/experimental/runtimeconfig/configs/multipleIOResolutions.xml similarity index 100% rename from examples/experimental/runtimeconfig/multipleIOResolutions.xml rename to examples/experimental/runtimeconfig/configs/multipleIOResolutions.xml diff --git a/examples/experimental/runtimeconfig/multipleTransformedVariables.xml b/examples/experimental/runtimeconfig/configs/multipleTransformedVariables.xml similarity index 100% rename from examples/experimental/runtimeconfig/multipleTransformedVariables.xml rename to examples/experimental/runtimeconfig/configs/multipleTransformedVariables.xml diff --git a/examples/experimental/runtimeconfig/hello/CMakeLists.txt b/examples/experimental/runtimeconfig/hello/CMakeLists.txt new file mode 100644 index 000000000..794404e46 --- /dev/null +++ b/examples/experimental/runtimeconfig/hello/CMakeLists.txt @@ -0,0 +1,11 @@ +if(ADIOS2_HAVE_MPI) + find_package(MPI COMPONENTS C REQUIRED) + + add_executable(helloBPWriterXML helloBPWriterXML.cpp) + target_include_directories(helloBPWriterXML PRIVATE ${MPI_C_INCLUDE_PATH}) + target_link_libraries(helloBPWriterXML ${MPI_C_LIBRARIES}) +else() + add_executable(helloBPWriterXML helloBPWriterXML_nompi.cpp) +endif() + +target_link_libraries(helloBPWriterXML adios2) -- GitLab