Hi list,

What is the "right" way to install a custom target, when you don't know the
result file name?
E.g. I have a sample project:

cmake_minimum_required(VERSION 3.9)
project(custom_target)

add_custom_target(
    log ALL
    COMMAND ${CMAKE_COMMAND} -E environment > sample-$<CONFIG>.log
  )
# install(... ??? ...)

In a multi-configuration build, how can I get the resulting filename to use
`install(FILES...)` (as it recommended by CMake wiki) ??

Or is there any other way to use `install()` (maybe `TARGETS`...) ?

Best,
-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake

Reply via email to