version 1.7, 2015/09/30 17:47:08
|
version 1.9, 2015/10/27 15:59:13
|
Line 8
|
Line 8
|
# SET (CMAKE_CONFIGURATION_TYPES "Debug;RelWithDebinfo" CACHE STRING "" FORCE) |
# SET (CMAKE_CONFIGURATION_TYPES "Debug;RelWithDebinfo" CACHE STRING "" FORCE) |
set(PACKAGE_NAME "imach") |
set(PACKAGE_NAME "imach") |
SET(IMACH_VERSION_MAJOR 0) |
SET(IMACH_VERSION_MAJOR 0) |
SET(IMACH_VERSION_MINOR 98r2) |
SET(IMACH_VERSION_MINOR 98r3) |
SET(IMACH_VERSION_PATCH 0) |
SET(IMACH_VERSION_PATCH 0) |
SET(IMACH_VERSION_NOTE "") |
SET(IMACH_VERSION_NOTE "") |
SET(IMACH_VERSION ${IMACH_VERSION_MAJOR}.${IMACH_VERSION_MINOR}) |
SET(IMACH_VERSION ${IMACH_VERSION_MAJOR}.${IMACH_VERSION_MINOR}) |
Line 242 ADD_TEST(biaspar IMaCh-${IMACH_VERSION}
|
Line 242 ADD_TEST(biaspar IMaCh-${IMACH_VERSION}
|
# endif() |
# endif() |
# endif() |
# endif() |
# Add a target to generate API documentation with Doxygen |
# Add a target to generate API documentation with Doxygen |
find_package(Doxygen) |
if(UNIX) |
if(DOXYGEN_FOUND) |
find_package(Doxygen) |
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/latex/Doxyfile.in |
if(DOXYGEN_FOUND) |
${CMAKE_CURRENT_BINARY_DIR}/latex/Doxyfile @ONLY) |
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/latex/Doxyfile.in |
add_custom_target(doc |
${CMAKE_CURRENT_BINARY_DIR}/latex/Doxyfile @ONLY) |
${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/latex/Doxyfile |
add_custom_target(doc |
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/latex |
${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/latex/Doxyfile |
COMMENT "Generating IMaCh documentation with Doxygen" VERBATIM |
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/latex |
) |
COMMENT "Generating IMaCh documentation with Doxygen" VERBATIM |
|
) |
|
endif() |
endif() |
endif() |
|
|