summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-01-10 17:49:02 +0000
committerSadie Powell <sadie@witchery.services>2024-01-10 17:49:02 +0000
commit0d8d1675f78af6c75b5cb09a89b8d9919f72eb1e (patch)
tree03229c0e9ecfe9b62e57eff9ba8d6635bb914201
parent4056af00e3a433fb0b255eecd844a7ed2614a917 (diff)
Fix an oversight in build_subdir.
-rw-r--r--modules/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/CMakeLists.txt b/modules/CMakeLists.txt
index 98bcf54d4..8f9455572 100644
--- a/modules/CMakeLists.txt
+++ b/modules/CMakeLists.txt
@@ -111,7 +111,7 @@ macro(build_subdir)
list(SORT MODULES_SUBDIR_SRCS)
GET_FILENAME_COMPONENT(FOLDER_NAME ${CMAKE_CURRENT_SOURCE_DIR} NAME)
- set(SO "${FOLDER_NAME}.${CMAKE_SHARED_LIBRARY_SUFFIX}")
+ set(SO "${FOLDER_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX}")
# Set all the files to use C++ as well as set their compile flags (use the module-specific compile flags, though)
set_source_files_properties(${MODULES_SUBDIR_SRCS} PROPERTIES LANGUAGE CXX COMPILE_FLAGS "${CXXFLAGS}")