On UNIX-like machines, I'm using
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L/some/path")
to add /some/path
to the linker path.
What is the equivalent of the -L/some/path
for MSVC (Microsoft Visual Studio C++ compiler)? Or, is there any portable way of adding an additional linker path so the linker can find the additional libraries I'm linking against?