diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-07-02 14:05:54 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-07-02 14:05:54 +0200 |
commit | dbca8cdb2a3c8e65c814521ba98f50a582194a73 (patch) | |
tree | a4054bb9963a9015e45e95e8a054fe0116ffb8ae /plugins/ProfileEditor | |
parent | Add --no-remote option (diff) | |
download | smolbote-dbca8cdb2a3c8e65c814521ba98f50a582194a73.tar.xz |
Add configuration/defaults.h
Diffstat (limited to 'plugins/ProfileEditor')
-rw-r--r-- | plugins/ProfileEditor/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ProfileEditor/CMakeLists.txt b/plugins/ProfileEditor/CMakeLists.txt index fc7cf96..4f3e026 100644 --- a/plugins/ProfileEditor/CMakeLists.txt +++ b/plugins/ProfileEditor/CMakeLists.txt @@ -26,8 +26,8 @@ target_link_libraries(ProfileEditorPlugin PRIVATE web ) -if(WIN32) - install(TARGETS ProfileEditorPlugin RUNTIME DESTINATION lib/smolbote CONFIGURATIONS Release) +if(${CMAKE_SYSTEM_NAME} MATCHES "Windows") + install(TARGETS ProfileEditorPlugin RUNTIME DESTINATION bin/plugins CONFIGURATIONS Release) else() install(TARGETS ProfileEditorPlugin LIBRARY DESTINATION lib/smolbote CONFIGURATIONS Release) endif() |