diff --git a/CMakeLists.txt b/CMakeLists.txt index 157a025..5a0dcce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -207,4 +207,13 @@ endforeach() # Install or Export # #]==============================================================================] -# TODO +## Installs +foreach(CONF IN LISTS KnownConfigurations) + if(NOT OM3_ENABLE_${CONF}) + continue() + endif() + + install(TARGETS OM3_${CONF} + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} + ) +endforeach()