Inconsistent naming: . /CMakeLists.txt use MPG123_INCLUDE_DIRS but ./cmake/FindMPG123.cmake use MPG123_INCLUDE_DIR. ~XXX_INCLUDE_DIRS (with a S) seems to be the convention, so I assume FindMPG123.cmake should be modified.~ I'm not sure which to use .
My mpg123 is installed (via homebrew) in /usr/local and /usr/local/include is not given to the compiler since ./CMakeLists.txt use the variable with S and this is empty. This gives a compilation error.
Inconsistent naming: . /CMakeLists.txt use
MPG123_INCLUDE_DIRS
but ./cmake/FindMPG123.cmake useMPG123_INCLUDE_DIR
. ~XXX_INCLUDE_DIRS
(with aS
) seems to be the convention, so I assume FindMPG123.cmake should be modified.~ I'm not sure which to use .My mpg123 is installed (via homebrew) in /usr/local and /usr/local/include is not given to the compiler since ./CMakeLists.txt use the variable with
S
and this is empty. This gives a compilation error.