mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
add pthreads to sample executables, fixes #75
This commit is contained in:
parent
7bf90e3952
commit
67174a9140
|
@ -5,11 +5,20 @@ if(NOT COMBINED_PROJECT)
|
||||||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../source ${CMAKE_CURRENT_BINARY_DIR}/source)
|
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../source ${CMAKE_CURRENT_BINARY_DIR}/source)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_executable(sample-basic ${CMAKE_CURRENT_SOURCE_DIR}/samples/sample.cpp)
|
include_directories(${LIBRARY_INCLUDE_DIR})
|
||||||
|
|
||||||
|
add_executable(sample-basic ${CMAKE_CURRENT_SOURCE_DIR}/sample.cpp)
|
||||||
target_link_libraries(sample-basic ${LIBRARY_NAME})
|
target_link_libraries(sample-basic ${LIBRARY_NAME})
|
||||||
|
|
||||||
add_executable(sample-decrypt ${CMAKE_CURRENT_SOURCE_DIR}/samples/decrypt.cpp)
|
add_executable(sample-decrypt ${CMAKE_CURRENT_SOURCE_DIR}/decrypt.cpp)
|
||||||
target_link_libraries(sample-decrypt ${LIBRARY_NAME})
|
target_link_libraries(sample-decrypt ${LIBRARY_NAME})
|
||||||
|
|
||||||
|
if(NOT MSVC)
|
||||||
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
||||||
|
find_package(Threads REQUIRED)
|
||||||
|
target_link_libraries(sample-basic Threads::Threads)
|
||||||
|
target_link_libraries(sample-decrypt Threads::Threads)
|
||||||
|
endif()
|
||||||
|
|
||||||
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/data
|
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/data
|
||||||
DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/bin)
|
DESTINATION ${CMAKE_BINARY_DIR}/bin)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user