Thanks Nils.

BTW, shouldn't that be
        ContinuumTransfunctioner$<$<CONFIG:Debug>:_d>                       
        Transmogrifier$<$<CONFIG:Debug>:_d>


Thanks,

- Olumide

On 12/04/2017 15:56, Nils Gladitz wrote:
On 04/12/2017 04:49 PM, Olumide wrote:

set(Libraries
    ContinuumTransfunctioner${CMAKE_DEBUG_POSTFIX}
    Transmogrifier${CMAKE_DEBUG_POSTFIX}
)

Perhaps try with generator expressions:

set(Libraries
    ContinuumTransfunctioner$<$<CONFIG:Debug>:d>
    Transmogrifier$<$<CONFIG:Debug>:d>
)

Maybe alternatively create a find module and populate imported targets
with the required information:
https://cmake.org/cmake/help/latest/manual/cmake-developer.7.html#find-modules


Or assuming ContinuumTransfunctioner and Transmogrifier are created by
an independent CMake project under your control look into target exports
and package configuration files:
https://cmake.org/cmake/help/latest/manual/cmake-packages.7.html#creating-packages


Nils

--

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