Re: [CMake] find_library in Windows(SOLVED)

2012-04-17 Thread Vyacheslav Karamov
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

Re: [CMake] find_library in Windows

2012-04-17 Thread Vyacheslav Karamov
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(

Re: [CMake] find_library in Windows

2012-04-17 Thread Vyacheslav Karamov
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

[CMake] find_library in Windows

2012-04-17 Thread Vyacheslav Karamov
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