2022-12-28 01:27:12 -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)
|
2022-12-28 01:27:12 -08:00
|
|
|
set(CMAKE_VERBOSE_MAKEFILE on)
|
|
|
|
project(yoga)
|
|
|
|
|
2023-01-16 07:56:11 -08:00
|
|
|
file(GLOB SOURCES CONFIGURE_DEPENDS
|
2022-12-28 01:27:12 -08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../yoga/*.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../yoga/**/*.cpp
|
2023-05-09 15:35:42 -07:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp)
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
include_directories(..)
|
|
|
|
|
2023-01-16 07:56:11 -08:00
|
|
|
set(CMAKE_CXX_STANDARD 14)
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
add_compile_definitions(
|
|
|
|
EMSCRIPTEN_HAS_UNBOUND_TYPE_NAMES=0)
|
|
|
|
|
|
|
|
set(COMPILE_OPTIONS
|
|
|
|
-flto
|
|
|
|
-fno-exceptions
|
|
|
|
-fno-rtti
|
|
|
|
-g0
|
|
|
|
-Os
|
|
|
|
"SHELL:-s STRICT=1")
|
|
|
|
|
|
|
|
add_compile_options(${COMPILE_OPTIONS})
|
|
|
|
|
|
|
|
add_link_options(
|
|
|
|
${COMPILE_OPTIONS}
|
|
|
|
--closure 1
|
|
|
|
--memory-init-file 0
|
|
|
|
--no-entry
|
|
|
|
"SHELL:-s ALLOW_MEMORY_GROWTH=1"
|
|
|
|
"SHELL:-s ASSERTIONS=0"
|
|
|
|
"SHELL:-s DYNAMIC_EXECUTION=0"
|
|
|
|
"SHELL:-s EXPORT_NAME='loadYoga'"
|
|
|
|
"SHELL:-s FETCH_SUPPORT_INDEXEDDB=0"
|
|
|
|
"SHELL:-s FILESYSTEM=0"
|
|
|
|
"SHELL:-s MALLOC='emmalloc'"
|
|
|
|
"SHELL:-s MODULARIZE=1"
|
2023-07-12 15:43:10 -07:00
|
|
|
"SHELL:-s TEXTDECODER=0"
|
|
|
|
"SHELL:-s SINGLE_FILE=1")
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
link_libraries(embind)
|
|
|
|
|
|
|
|
add_library(yogaObjLib OBJECT ${SOURCES})
|
|
|
|
|
2023-05-09 22:21:01 -07:00
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/binaries)
|
2022-12-28 01:27:12 -08:00
|
|
|
|
2023-07-12 15:43:10 -07:00
|
|
|
add_executable(asmjs-sync-node $<TARGET_OBJECTS:yogaObjLib>)
|
|
|
|
target_link_options(asmjs-sync-node PUBLIC
|
|
|
|
"SHELL:-s ENVIRONMENT='node'"
|
|
|
|
"SHELL:-s WASM=0"
|
|
|
|
"SHELL:-s WASM_ASYNC_COMPILATION=0")
|
|
|
|
|
|
|
|
add_executable(asmjs-async-node $<TARGET_OBJECTS:yogaObjLib>)
|
|
|
|
target_link_options(asmjs-async-node PUBLIC
|
|
|
|
"SHELL:-s ENVIRONMENT='node'"
|
|
|
|
"SHELL:-s WASM=0"
|
|
|
|
"SHELL:-s WASM_ASYNC_COMPILATION=1")
|
|
|
|
|
|
|
|
add_executable(asmjs-sync-web $<TARGET_OBJECTS:yogaObjLib>)
|
|
|
|
target_link_options(asmjs-sync-web PUBLIC
|
|
|
|
"SHELL:-s ENVIRONMENT='web'"
|
|
|
|
"SHELL:-s WASM=0"
|
|
|
|
"SHELL:-s WASM_ASYNC_COMPILATION=0")
|
|
|
|
|
|
|
|
add_executable(asmjs-async-web $<TARGET_OBJECTS:yogaObjLib>)
|
|
|
|
target_link_options(asmjs-async-web PUBLIC
|
|
|
|
"SHELL:-s ENVIRONMENT='web'"
|
|
|
|
"SHELL:-s WASM=0"
|
|
|
|
"SHELL:-s WASM_ASYNC_COMPILATION=1")
|
|
|
|
|
2022-12-28 01:27:12 -08:00
|
|
|
add_executable(asmjs-sync $<TARGET_OBJECTS:yogaObjLib>)
|
|
|
|
target_link_options(asmjs-sync PUBLIC
|
2023-07-12 15:43:10 -07:00
|
|
|
"SHELL:-s ENVIRONMENT='web,node'"
|
2022-12-28 01:27:12 -08:00
|
|
|
"SHELL:-s WASM=0"
|
|
|
|
"SHELL:-s WASM_ASYNC_COMPILATION=0")
|
|
|
|
|
|
|
|
add_executable(asmjs-async $<TARGET_OBJECTS:yogaObjLib>)
|
|
|
|
target_link_options(asmjs-async PUBLIC
|
2023-07-12 15:43:10 -07:00
|
|
|
"SHELL:-s ENVIRONMENT='web,node'"
|
2022-12-28 01:27:12 -08:00
|
|
|
"SHELL:-s WASM=0"
|
|
|
|
"SHELL:-s WASM_ASYNC_COMPILATION=1")
|
|
|
|
|
2023-07-12 15:43:10 -07:00
|
|
|
add_executable(wasm-sync-node $<TARGET_OBJECTS:yogaObjLib>)
|
|
|
|
target_link_options(wasm-sync-node PUBLIC
|
|
|
|
"SHELL:-s ENVIRONMENT='node'"
|
|
|
|
"SHELL:-s WASM=1"
|
|
|
|
"SHELL:-s WASM_ASYNC_COMPILATION=0")
|
|
|
|
|
|
|
|
add_executable(wasm-async-node $<TARGET_OBJECTS:yogaObjLib>)
|
|
|
|
target_link_options(wasm-async-node PUBLIC
|
|
|
|
"SHELL:-s ENVIRONMENT='node'"
|
|
|
|
"SHELL:-s WASM=1"
|
|
|
|
"SHELL:-s WASM_ASYNC_COMPILATION=1")
|
|
|
|
|
|
|
|
add_executable(wasm-sync-web $<TARGET_OBJECTS:yogaObjLib>)
|
|
|
|
target_link_options(wasm-sync-web PUBLIC
|
|
|
|
"SHELL:-s ENVIRONMENT='web'"
|
2022-12-28 01:27:12 -08:00
|
|
|
"SHELL:-s WASM=1"
|
|
|
|
"SHELL:-s WASM_ASYNC_COMPILATION=0")
|
|
|
|
|
2023-07-12 15:43:10 -07:00
|
|
|
add_executable(wasm-async-web $<TARGET_OBJECTS:yogaObjLib>)
|
|
|
|
target_link_options(wasm-async-web PUBLIC
|
|
|
|
"SHELL:-s ENVIRONMENT='web'"
|
2022-12-28 01:27:12 -08:00
|
|
|
"SHELL:-s WASM=1"
|
|
|
|
"SHELL:-s WASM_ASYNC_COMPILATION=1")
|