We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 254876b commit 8bbc985Copy full SHA for 8bbc985
CMakeLists.txt
@@ -1169,6 +1169,14 @@ if(LINUX)
1169
target_link_libraries(libfastfetch
1170
PRIVATE "m"
1171
)
1172
+
1173
+ if(ENABLE_DIRECTX_HEADERS)
1174
+ if(NOT BINARY_LINK_TYPE STREQUAL "dlopen")
1175
+ target_link_libraries(libfastfetch
1176
+ PRIVATE "/usr/lib/wsl/lib/libdxcore.so"
1177
+ )
1178
+ endif()
1179
1180
elseif(APPLE)
1181
1182
PRIVATE "-framework AVFoundation"
src/detection/gpu/gpu_mthreads.c
@@ -30,7 +30,7 @@ struct FFMtmlData
30
MtmlSystem *sys;
31
} mtmlData;
32
33
-static void shutdownMtml()
+FF_MAYBE_UNUSED static void shutdownMtml(void)
34
{
35
mtmlData.ffmtmlLibraryShutDown(mtmlData.lib);
36
}
0 commit comments