Skip to content

Commit

Permalink
Linux fixes, CLion .gitignore tweaks, AudioProcessor module detection…
Browse files Browse the repository at this point in the history
… macro fix
  • Loading branch information
kcoul committed Jun 6, 2023
1 parent 22654e2 commit 6eb8e90
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,8 @@ compile_commands.json
.vscode
TestsData
suppress-win.txt

#KC
.idea
cmake-build-*
audiogridder-deps
2 changes: 1 addition & 1 deletion Common/Source/Utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,6 @@ inline int getLayoutNumChannels(const AudioProcessor::BusesLayout& l, bool isInp
}
return num;
}
#endif

inline String getPluginType(const String& id, const PluginDescription* pdesc) {
String type;
Expand Down Expand Up @@ -691,6 +690,7 @@ inline String getPluginName(const String& id, const PluginDescription* pdesc, bo
}
return name;
}
#endif

struct FnThread : Thread {
std::function<void()> fn;
Expand Down
2 changes: 2 additions & 0 deletions cmake/FindFFmpeg.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ macro(FFMPEG_FIND varname shortname headername)
PATHS
${FFMPEG_ROOT}/include
$ENV{FFMPEG_DIR}/include
/usr/include/x86_64-linux-gnu
/usr/local/include
/usr/include/
NO_DEFAULT_PATH
Expand All @@ -23,6 +24,7 @@ macro(FFMPEG_FIND varname shortname headername)
PATHS
${FFMPEG_ROOT}/lib
$ENV{FFMPEG_DIR}/lib
/usr/lib/x86_64-linux-gnu
/usr/local/lib
/usr/lib
NO_DEFAULT_PATH
Expand Down
2 changes: 2 additions & 0 deletions cmake/FindWebP.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ macro(WEBP_FIND varname shortname headername)
PATHS
${FFMPEG_ROOT}/include
$ENV{FFMPEG_DIR}/include
/usr/include/x86_64-linux-gnu
/usr/local/include
/usr/include/
NO_DEFAULT_PATH
Expand All @@ -23,6 +24,7 @@ macro(WEBP_FIND varname shortname headername)
PATHS
${FFMPEG_ROOT}/lib
$ENV{FFMPEG_DIR}/lib
/usr/lib/x86_64-linux-gnu
/usr/local/lib
/usr/lib
NO_DEFAULT_PATH
Expand Down

0 comments on commit 6eb8e90

Please sign in to comment.