##// END OF EJS Templates
Added basic tests around Amda plugin Python wrapper...
Added basic tests around Amda plugin Python wrapper - Basic Amda parser test - Basic Amda Download test, it makes few range updates on a single variable with myAMDA as server. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1331:c1dcbf747424
r1340:02cea38fdcb4
Show More
CMakeLists.txt
13 lines | 425 B | text/plain | TextLexer
Modernized CMake configuration...
r1331 find_package(Doxygen)
if(DOXYGEN_FOUND)
set(doxyfile_in ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.dox.in)
set(doxyfile ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
configure_file(${doxyfile_in} ${doxyfile} @ONLY)
add_custom_target(doc
COMMAND ${DOXYGEN_EXECUTABLE} ${doxyfile}
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
COMMENT "Generating API documentation with Doxygen"
VERBATIM)
endif()