Re: [CMake] Adding files to project that don't exist

2015-04-30 Thread Hendrik Sattler
Am 30. April 2015 14:04:08 MESZ, schrieb coo...@megaroms.co.uk: >Hi, > >I'm using Doxygen to generate my project documentation and have a >custom >target to do it. Like this: > >find_package( Doxygen ) > >if( DOXYGEN_FOUND ) >configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in >${CMAKE_CU

[CMake] Adding files to project that don't exist

2015-04-30 Thread coordz
Hi, I'm using Doxygen to generate my project documentation and have a custom target to do it. Like this: find_package( Doxygen ) if( DOXYGEN_FOUND ) configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY ) add_custom_target( doc