Am 12/04/2017 um 13:28 schrieb Olumide:
set(Libraries
    ContinuumTransfunctioner${CMAKE_DEBUG_POSTFIX}
    Transmogrifier${CMAKE_DEBUG_POSTFIX}
)
Hi,

you could add the configuration for a single library dependency.

target_link_libraries(your_target

debug ContinuumTransfunctioner${CMAKE_DEBUG_POSTFIX}

optimized ContinuumTransfunctioner

debug Transmogrifier${CMAKE_DEBUG_POSTFIX}

optimized Transmogrifier

)

you could also put that into a variable and reference that later

set(Libraries

debug ContinuumTransfunctioner${CMAKE_DEBUG_POSTFIX}

optimized ContinuumTransfunctioner

debug Transmogrifier${CMAKE_DEBUG_POSTFIX}

optimized Transmogrifier

)

target_link_libraries(your_target ${Libraries})


Hope that helps, Cheers, Volker


--

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