Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: Alan W. Irwin <airwin@us...> - 2006-10-30 17:28:05
|
Update of /cvsroot/plplot/plplot/bindings/f77 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6742/bindings/f77 Modified Files: CMakeLists.txt Log Message: Drop deprecated ARGS arguments. Index: CMakeLists.txt =================================================================== RCS file: /cvsroot/plplot/plplot/bindings/f77/CMakeLists.txt,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- CMakeLists.txt 21 Sep 2006 22:23:33 -0000 1.13 +++ CMakeLists.txt 30 Oct 2006 17:27:59 -0000 1.14 @@ -24,17 +24,17 @@ ## Note: Sed will possibly fail on windows. Would this be better ## done using the cmake configure_file option eventually? if(PL_DOUBLE) - ADD_CUSTOM_command( + add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/sfstubs.f COMMAND ${CMAKE_COMMAND} - ARGS -E copy ${CMAKE_CURRENT_SOURCE_DIR}/sfstubs.fm4 ${CMAKE_CURRENT_BINARY_DIR}/sfstubs.f + -E copy ${CMAKE_CURRENT_SOURCE_DIR}/sfstubs.fm4 ${CMAKE_CURRENT_BINARY_DIR}/sfstubs.f DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/sfstubs.fm4 ) else(PL_DOUBLE) add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/sfstubs.f COMMAND sed - ARGS -f ${CMAKE_CURRENT_SOURCE_DIR}/double2single.sed ${CMAKE_CURRENT_SOURCE_DIR}/sfstubs.fm4a > ${CMAKE_CURRENT_BINARY_DIR}/sfstubs.f + -f ${CMAKE_CURRENT_SOURCE_DIR}/double2single.sed ${CMAKE_CURRENT_SOURCE_DIR}/sfstubs.fm4a > ${CMAKE_CURRENT_BINARY_DIR}/sfstubs.f DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/sfstubs.fm4 ) endif(PL_DOUBLE) @@ -147,4 +147,4 @@ ) install(FILES ${PC_CONFIGURED_FILE} DESTINATION ${PKG_CONFIG_DIR}) endif(PKGCONFIG_EXECUTABLE) -ENDIF(ENABLE_f77) +endif(ENABLE_f77) |