diff options
| author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-10-20 15:14:24 +0200 | 
|---|---|---|
| committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-10-20 15:14:24 +0200 | 
| commit | 88492823826b3720be4ba29d246848031418bfb5 (patch) | |
| tree | 4f17cc7f4ef3f76f869a1d4fcb94722464aa9d0b /plugins | |
| parent | Hostlist test: test non-empty domain (diff) | |
| download | smolbote-88492823826b3720be4ba29d246848031418bfb5.tar.xz | |
Add Kconfiglib to parse Kconfig/.config
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/ConfigurationEditor/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | plugins/ProfileEditor/CMakeLists.txt | 4 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/plugins/ConfigurationEditor/CMakeLists.txt b/plugins/ConfigurationEditor/CMakeLists.txt index 5f66e13..7eb6de4 100644 --- a/plugins/ConfigurationEditor/CMakeLists.txt +++ b/plugins/ConfigurationEditor/CMakeLists.txt @@ -24,7 +24,7 @@ target_link_libraries(ConfigurationEditorPlugin  )  if(${CMAKE_SYSTEM_NAME} MATCHES "Windows") -    install(TARGETS ConfigurationEditorPlugin RUNTIME DESTINATION ${CONFIG_INSTALL_LIB} CONFIGURATIONS Release) +    install(TARGETS ConfigurationEditorPlugin RUNTIME DESTINATION ${CONFIG_INSTALL_PLUGINDIR} CONFIGURATIONS Release)  else() -    install(TARGETS ConfigurationEditorPlugin LIBRARY DESTINATION ${CONFIG_INSTALL_LIB} CONFIGURATIONS Release) +    install(TARGETS ConfigurationEditorPlugin LIBRARY DESTINATION ${CONFIG_INSTALL_PLUGINDIR} CONFIGURATIONS Release)  endif() diff --git a/plugins/ProfileEditor/CMakeLists.txt b/plugins/ProfileEditor/CMakeLists.txt index 6f16b48..25a9638 100644 --- a/plugins/ProfileEditor/CMakeLists.txt +++ b/plugins/ProfileEditor/CMakeLists.txt @@ -41,7 +41,7 @@ target_link_libraries(ProfileEditorPlugin  )  if(${CMAKE_SYSTEM_NAME} MATCHES "Windows") -    install(TARGETS ProfileEditorPlugin RUNTIME DESTINATION ${CONFIG_INSTALL_LIB} CONFIGURATIONS Release) +    install(TARGETS ProfileEditorPlugin RUNTIME DESTINATION ${CONFIG_INSTALL_PLUGINDIR} CONFIGURATIONS Release)  else() -    install(TARGETS ProfileEditorPlugin LIBRARY DESTINATION ${CONFIG_INSTALL_LIB} CONFIGURATIONS Release) +    install(TARGETS ProfileEditorPlugin LIBRARY DESTINATION ${CONFIG_INSTALL_PLUGINDIR} CONFIGURATIONS Release)  endif() | 
