I'm happy. It works!
target_link_libraries(${lib_name}
debug ${do_scoring_debug}
debug ${spinx_debug}
optimized ${do_scoring}
optimized ${spinx}
)
17.04.2012 14:59, Vyacheslav Karamov написал:
When I specified full library name with extension find_library worked.
But still have both debug and r
When I specified full library name with extension find_library worked.
But still have both debug and release versions of library being linked
with my target.
17.04.2012 12:13, Vyacheslav Karamov написал:
This code doesn't work also:
if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows")
find_library(
This code doesn't work also:
if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows")
find_library(spinx
NAME sphinxbase
HINTS "${CMAKE_CURRENT_SOURCE_DIR}/../../Sphinx/sphinxbase/bin/Release"
DOC "SphinX release library"
)
find_library(spinx_debug
NAME sphinxbased
PATHS ${CMAKE_CURRENT_SOURCE_DIR}/../../S
Hi All!
I have a problem with find_library in Windows. It does find static
library, but not import library.
It's confusing to me.
if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows")
find_library(spinx
NAMES sphinxbase
${CMAKE_CURRENT_SOURCE_DIR}/../../Sphinx/sphinxbase/bin/Release
)
fin