2023-01-16 07:56:11 -08:00
|
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
|
|
#
|
|
|
|
# This source code is licensed under the MIT license found in the
|
|
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
|
2023-05-15 15:21:56 -07:00
|
|
|
cmake_minimum_required(VERSION 3.13...3.26)
|
2023-01-16 07:56:11 -08:00
|
|
|
project(benchmark)
|
|
|
|
set(CMAKE_VERBOSE_MAKEFILE on)
|
|
|
|
|
|
|
|
set(YOGA_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/..)
|
|
|
|
include(${YOGA_ROOT}/cmake/project-defaults.cmake)
|
|
|
|
|
|
|
|
add_subdirectory(${YOGA_ROOT}/yoga ${CMAKE_CURRENT_BINARY_DIR}/yoga)
|
|
|
|
|
2024-02-05 11:48:07 -08:00
|
|
|
file(GLOB SOURCES_LEGACY CONFIGURE_DEPENDS
|
2023-01-16 07:56:11 -08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/*.c)
|
2024-02-05 11:48:07 -08:00
|
|
|
file(GLOB SOURCES CONFIGURE_DEPENDS
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)
|
|
|
|
|
2023-01-16 07:56:11 -08:00
|
|
|
add_executable(benchmark ${SOURCES})
|
2024-02-05 11:48:07 -08:00
|
|
|
add_executable(benchmarklegacy ${SOURCES_LEGACY})
|
|
|
|
|
2023-01-16 07:56:11 -08:00
|
|
|
target_link_libraries(benchmark yogacore)
|
2024-02-05 11:48:07 -08:00
|
|
|
target_link_libraries(benchmarklegacy yogacore)
|
|
|
|
target_include_directories(benchmark
|
|
|
|
PRIVATE
|
|
|
|
$<BUILD_INTERFACE:${YOGA_ROOT}/lib>)
|