mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
21 lines
657 B
CMake
21 lines
657 B
CMake
cmake_minimum_required(VERSION 3.1)
|
|
project(xlnt.benchmarks)
|
|
|
|
if(NOT COMBINED_PROJECT)
|
|
add_subdirectory(${LIBRARY_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}/source)
|
|
endif()
|
|
|
|
include_directories(${LIBRARY_INCLUDE_DIR})
|
|
|
|
file(GLOB SAMPLE_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)
|
|
|
|
foreach(SAMPLE_SOURCE IN ITEMS ${SAMPLE_SOURCES})
|
|
get_filename_component(SAMPLE_NAME ${SAMPLE_SOURCE} NAME_WE)
|
|
set(SAMPLE_EXECUTABLE benchmark-${SAMPLE_NAME})
|
|
add_executable(${SAMPLE_EXECUTABLE} ${SAMPLE_SOURCE})
|
|
target_link_libraries(${SAMPLE_EXECUTABLE} xlnt)
|
|
endforeach()
|
|
|
|
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/data
|
|
DESTINATION ${CMAKE_BINARY_DIR}/bin)
|