mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
27 lines
900 B
CMake
27 lines
900 B
CMake
|
target_compile_definitions(${GOLDENDICT} PUBLIC
|
||
|
__WIN32
|
||
|
INCLUDE_LIBRARY_PATH # temporal hack to let singleapplication compile
|
||
|
)
|
||
|
|
||
|
target_include_directories(${GOLDENDICT} PUBLIC
|
||
|
${CMAKE_SOURCE_DIR}/winlibs/include/
|
||
|
)
|
||
|
|
||
|
set_property(TARGET ${BIN_NAME} PROPERTY
|
||
|
MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>DLL")
|
||
|
|
||
|
file(GLOB WINLIBS_FILES "${CMAKE_SOURCE_DIR}/winlibs/lib/msvc/*.lib")
|
||
|
foreach (A_WIN_LIB ${WINLIBS_FILES})
|
||
|
target_link_libraries(${GOLDENDICT} PRIVATE ${A_WIN_LIB})
|
||
|
endforeach ()
|
||
|
|
||
|
# Copy .dlls to output dir
|
||
|
|
||
|
file(GLOB DLL_FILES LIST_DIRECTORIES false "${CMAKE_SOURCE_DIR}/winlibs/lib/msvc/*.dll")
|
||
|
foreach (A_DLL_FILE ${DLL_FILES})
|
||
|
get_filename_component(TEMP_VAR_HOLDING_DLL_FILENAME ${A_DLL_FILE} NAME)
|
||
|
configure_file("${A_DLL_FILE}" "${CMAKE_BINARY_DIR}/${TEMP_VAR_HOLDING_DLL_FILENAME}" COPYONLY)
|
||
|
endforeach ()
|
||
|
|
||
|
|