Skip to content

Commit f251cae

Browse files
committedDec 9, 2024··
Fix wrong API exports definition in playlist build.
Mostly irrelevant on UNIX (except if visibility is set to hidden by default), but may cause issues on Windows as the dllexport declspec was missing.
1 parent db035da commit f251cae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎src/playlist/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ target_link_libraries(projectM_playlist
6363
if(BUILD_SHARED_LIBS)
6464
target_compile_definitions(projectM_playlist
6565
PRIVATE
66-
projectM_api_EXPORTS
66+
projectM_playlist_EXPORTS
6767
)
6868

6969
target_link_libraries(projectM_playlist

0 commit comments

Comments
 (0)
Please sign in to comment.