initial work to split into dart_filament and flutter_filament
This commit is contained in:
128
flutter_filament/web/CMakeLists.txt
Normal file
128
flutter_filament/web/CMakeLists.txt
Normal file
@@ -0,0 +1,128 @@
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
|
||||
set(PROJECT_NAME "flutter_filament")
|
||||
project(${PROJECT_NAME})
|
||||
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++ -fPIC -Wno-unused-variable -Wno-unused-function")
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC -Wno-unused-variable -Wno-unused-function")
|
||||
|
||||
set(PLUGIN_NAME "flutter_filament_plugin")
|
||||
|
||||
link_directories("${CMAKE_CURRENT_SOURCE_DIR}/lib")
|
||||
|
||||
add_library(FILAMENT_SHADERS STATIC
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/include/material/image.c"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/include/material/unlit_opaque.c"
|
||||
)
|
||||
|
||||
add_library(${PLUGIN_NAME} STATIC
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/SceneManager.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/FilamentViewer.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/FlutterFilamentApi.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/StreamBufferAdapter.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/TimeIt.cpp"
|
||||
)
|
||||
|
||||
set_target_properties(${PLUGIN_NAME} PROPERTIES
|
||||
CXX_VISIBILITY_PRESET hidden)
|
||||
target_compile_definitions(${PLUGIN_NAME} PRIVATE FLUTTER_PLUGIN_IMPL)
|
||||
|
||||
target_compile_features(${PLUGIN_NAME} PRIVATE cxx_std_17)
|
||||
|
||||
target_include_directories(${PLUGIN_NAME} INTERFACE
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/include")
|
||||
|
||||
include_directories(../ios/src)
|
||||
include_directories(../ios/include)
|
||||
include_directories(../example/linux)
|
||||
|
||||
# add_library(geometry STATIC IMPORTED)
|
||||
# set_property(TARGET geometry PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libgeometry.a")
|
||||
# add_library(filament STATIC IMPORTED)
|
||||
# set_property(TARGET filament PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libfilament.a")
|
||||
# add_library(backend STATIC IMPORTED)
|
||||
# set_property(TARGET backend PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libbackend.a")
|
||||
# add_library(filameshio STATIC IMPORTED)
|
||||
# set_property(TARGET filameshio PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libfilameshio.a")
|
||||
# add_library(filament_viewer STATIC IMPORTED)
|
||||
# set_property(TARGET filament_viewer PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libviewer.a")
|
||||
# add_library(utils STATIC IMPORTED)
|
||||
# set_property(TARGET utils PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libutils.a")
|
||||
# add_library(filabridge STATIC IMPORTED)
|
||||
# set_property(TARGET filabridge PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libfilabridge.a")
|
||||
# add_library(gltfio_core STATIC IMPORTED)
|
||||
# set_property(TARGET gltfio_core PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libgltfio_core.a")
|
||||
# add_library(filament-iblprefilter STATIC IMPORTED)
|
||||
# set_property(TARGET filament-iblprefilter PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libfilament-iblprefilter.a")
|
||||
# add_library(image STATIC IMPORTED)
|
||||
# set_property(TARGET image PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libimage.a")
|
||||
# add_library(camutils STATIC IMPORTED)
|
||||
# set_property(TARGET camutils PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libcamutils.a")
|
||||
# add_library(filaflat STATIC IMPORTED)
|
||||
# set_property(TARGET filaflat PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libfilaflat.a")
|
||||
# add_library(dracodec STATIC IMPORTED)
|
||||
# set_property(TARGET dracodec PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libdracodec.a")
|
||||
# add_library(ibl STATIC IMPORTED)
|
||||
# set_property(TARGET ibl PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libibl.a")
|
||||
# add_library(ktxreader STATIC IMPORTED)
|
||||
# set_property(TARGET ktxreader PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libktxreader.a")
|
||||
# add_library(imageio STATIC IMPORTED)
|
||||
# set_property(TARGET imageio PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libimageio.a")
|
||||
# add_library(tinyexr STATIC IMPORTED)
|
||||
# set_property(TARGET tinyexr PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libtinyexr.a")
|
||||
# add_library(stb STATIC IMPORTED)
|
||||
# set_property(TARGET stb PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libstb.a")
|
||||
# # add_library(bluegl STATIC IMPORTED)
|
||||
# # set_property(TARGET bluegl PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libbluegl.a")
|
||||
# add_library(uberzlib STATIC IMPORTED)
|
||||
# set_property(TARGET uberzlib PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libuberzlib.a")
|
||||
# add_library(smol-v STATIC IMPORTED)
|
||||
# set_property(TARGET smol-v PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libsmol-v.a")
|
||||
# add_library(png STATIC IMPORTED)
|
||||
# set_property(TARGET png PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libpng.a")
|
||||
# add_library(uberarchive STATIC IMPORTED)
|
||||
# set_property(TARGET uberarchive PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libuberarchive.a")
|
||||
# add_library(meshoptimizer STATIC IMPORTED)
|
||||
# set_property(TARGET meshoptimizer PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libmeshoptimizer.a")
|
||||
# add_library(mathio STATIC IMPORTED)
|
||||
# set_property(TARGET mathio PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libmathio.a")
|
||||
# add_library(math STATIC IMPORTED)
|
||||
# set_property(TARGET math PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libmath.a")
|
||||
# add_library(basis_transcoder STATIC IMPORTED)
|
||||
# set_property(TARGET basis_transcoder PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libbasis_transcoder.a")
|
||||
# add_library(z STATIC IMPORTED)
|
||||
# set_property(TARGET z PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/libz.a")
|
||||
|
||||
# target_link_libraries(${PLUGIN_NAME} PRIVATE
|
||||
# FILAMENT_SHADERS
|
||||
# gltfio_core
|
||||
# filament
|
||||
# backend
|
||||
# geometry
|
||||
# filameshio
|
||||
# filament_viewer
|
||||
# filabridge
|
||||
# filament-iblprefilter
|
||||
# camutils
|
||||
# filaflat
|
||||
# dracodec
|
||||
# ibl
|
||||
# ktxreader
|
||||
# imageio
|
||||
# image
|
||||
# png
|
||||
# utils
|
||||
# tinyexr
|
||||
# stb
|
||||
# # bluegl
|
||||
# uberzlib
|
||||
# smol-v
|
||||
# uberarchive
|
||||
# meshoptimizer
|
||||
# mathio
|
||||
# math
|
||||
# geometry
|
||||
# basis_transcoder
|
||||
# z
|
||||
# )
|
||||
|
||||
BIN
flutter_filament/web/build/.ninja_deps
Normal file
BIN
flutter_filament/web/build/.ninja_deps
Normal file
Binary file not shown.
43
flutter_filament/web/build/.ninja_log
Normal file
43
flutter_filament/web/build/.ninja_log
Normal file
@@ -0,0 +1,43 @@
|
||||
# ninja log v5
|
||||
8 2057 1706058299651317392 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentFFIApi.cpp.o 744e9f9a9486011a
|
||||
7 1609 1706058299205852535 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o 67e0eba27afd6a0b
|
||||
8 1313 1706058298913267264 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o 56f906894dfb3425
|
||||
7 163 1703137555096737738 CMakeFiles/filament_shaders.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/include/material/image.c.o 4c5aa82293fd5bef
|
||||
8 1076 1706058298667915769 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/camutils/Manipulator.cpp.o 1bfb58154ea6bb40
|
||||
313 560 1706058298171157000 libfilament_shaders.a fca4eeec0b2eb81b
|
||||
7 313 1706058297914934807 CMakeFiles/filament_shaders.dir/include/material/image.c.o 45fecb93dd2259db
|
||||
9 1107 1706058298705303044 CMakeFiles/flutter_filament_plugin.dir/src/cpp/FlutterFilamentWebApi.cpp.o 9b75078ec58f1652
|
||||
2 14 0 clean 1f0117926fe85a19
|
||||
2 457 1706066937386999438 build.ninja d5dc4253a49bccd8
|
||||
8 948 1706058298545908194 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o 5105d486ad41e44
|
||||
9 467 1706058298068202980 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/camutils/Bookmark.cpp.o 1845d50447671b60
|
||||
7 1714 1706058299308011067 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o 66ad44746d88b769
|
||||
2057 42861 1706058312787415130 /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/example/assets/web/flutter_filament_plugin.js 738d6b69b0522dc8
|
||||
8 853 1706058298445430384 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o 57db6cce9097ef9c
|
||||
10 968 1706066937386999438 build.ninja d5dc4253a49bccd8
|
||||
1 18 0 clean 1f0117926fe85a19
|
||||
26 263 1706066937662806879 CMakeFiles/filament_shaders.dir/include/material/image.c.o fda79fef71d27815
|
||||
27 536 1706066937938780032 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/camutils/Bookmark.cpp.o afc386b18b19d029
|
||||
263 612 1706066938021426000 libfilament_shaders.a fca4eeec0b2eb81b
|
||||
27 877 1706066938259597531 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o a76b3746b7a3e168
|
||||
27 924 1706066938318853142 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o 399fcdbd431e5174
|
||||
28 1135 1706066938526590874 CMakeFiles/flutter_filament_plugin.dir/src/cpp/FlutterFilamentWebApi.cpp.o d65441b47bdd89a4
|
||||
27 1167 1706066938566629659 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/camutils/Manipulator.cpp.o e071556bdad89156
|
||||
27 1309 1706066938709873164 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o 86ea1bc13663128b
|
||||
27 1737 1706066939133473205 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o fd0d95bc16fef39f
|
||||
26 1939 1706066939336689259 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o 86b48faad09bf510
|
||||
27 2217 1706066939612240817 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentFFIApi.cpp.o 9b9670e5b3c2b23a
|
||||
2217 28644 1706066953421636411 /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/example/assets/web/flutter_filament_plugin.js 1c2db8b192c8c562
|
||||
6 16 0 clean 1f0117926fe85a19
|
||||
15 449 1706067844500927190 CMakeFiles/filament_shaders.dir/include/material/image.c.o fda79fef71d27815
|
||||
449 713 1706067844775464000 libfilament_shaders.a fca4eeec0b2eb81b
|
||||
16 788 1706067844844609118 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/camutils/Bookmark.cpp.o afc386b18b19d029
|
||||
16 1106 1706067845158801610 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o a76b3746b7a3e168
|
||||
16 1143 1706067845194907670 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o 399fcdbd431e5174
|
||||
16 1404 1706067845449991382 CMakeFiles/flutter_filament_plugin.dir/src/cpp/FlutterFilamentWebApi.cpp.o d65441b47bdd89a4
|
||||
16 1412 1706067845463849179 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/camutils/Manipulator.cpp.o e071556bdad89156
|
||||
16 1548 1706067845601414025 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o 86ea1bc13663128b
|
||||
16 2028 1706067846079145007 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o fd0d95bc16fef39f
|
||||
15 2161 1706067846211185144 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o 86b48faad09bf510
|
||||
16 2471 1706067846520556261 CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentFFIApi.cpp.o 9b9670e5b3c2b23a
|
||||
2471 28081 1706067859884550723 /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/example/assets/web/flutter_filament_plugin.js 1c2db8b192c8c562
|
||||
347
flutter_filament/web/build/CMakeCache.txt
Normal file
347
flutter_filament/web/build/CMakeCache.txt
Normal file
@@ -0,0 +1,347 @@
|
||||
# This is the CMakeCache file.
|
||||
# For build in directory: /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/build
|
||||
# It was generated by CMake: /opt/homebrew/Cellar/cmake/3.27.3/bin/cmake
|
||||
# You can edit this file to change values found and used by cmake.
|
||||
# If you do not want to change any of the values, simply exit the editor.
|
||||
# If you do want to change a value, simply edit, save, and exit the editor.
|
||||
# The syntax for the file is as follows:
|
||||
# KEY:TYPE=VALUE
|
||||
# KEY is the name of a variable in the cache.
|
||||
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
|
||||
# VALUE is the current value for the KEY.
|
||||
|
||||
########################
|
||||
# EXTERNAL cache entries
|
||||
########################
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_ADDR2LINE:FILEPATH=CMAKE_ADDR2LINE-NOTFOUND
|
||||
|
||||
//Choose the type of build, options are: None Debug Release RelWithDebInfo
|
||||
// MinSizeRel ...
|
||||
CMAKE_BUILD_TYPE:STRING=Debug
|
||||
|
||||
//No help, variable specified on the command line.
|
||||
CMAKE_CROSSCOMPILING_EMULATOR:UNINITIALIZED=/Users/nickfisher/Documents/emsdk/node/16.20.0_64bit/bin/node
|
||||
|
||||
//`clang-scan-deps` dependency scanner
|
||||
CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS:FILEPATH=CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS-NOTFOUND
|
||||
|
||||
//Flags used by the CXX compiler during all build types.
|
||||
CMAKE_CXX_FLAGS:STRING=
|
||||
|
||||
//Flags used by the CXX compiler during DEBUG builds.
|
||||
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
|
||||
|
||||
//Flags used by the CXX compiler during MINSIZEREL builds.
|
||||
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||
|
||||
//Flags used by the CXX compiler during RELEASE builds.
|
||||
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||
|
||||
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
|
||||
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||
|
||||
//`clang-scan-deps` dependency scanner
|
||||
CMAKE_C_COMPILER_CLANG_SCAN_DEPS:FILEPATH=CMAKE_C_COMPILER_CLANG_SCAN_DEPS-NOTFOUND
|
||||
|
||||
//Flags used by the C compiler during all build types.
|
||||
CMAKE_C_FLAGS:STRING=
|
||||
|
||||
//Flags used by the C compiler during DEBUG builds.
|
||||
CMAKE_C_FLAGS_DEBUG:STRING=-g
|
||||
|
||||
//Flags used by the C compiler during MINSIZEREL builds.
|
||||
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||
|
||||
//Flags used by the C compiler during RELEASE builds.
|
||||
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||
|
||||
//Flags used by the C compiler during RELWITHDEBINFO builds.
|
||||
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
|
||||
|
||||
//Flags used by the linker during all build types.
|
||||
CMAKE_EXE_LINKER_FLAGS:STRING=
|
||||
|
||||
//Flags used by the linker during DEBUG builds.
|
||||
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
|
||||
|
||||
//Flags used by the linker during MINSIZEREL builds.
|
||||
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||
|
||||
//Flags used by the linker during RELEASE builds.
|
||||
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
|
||||
|
||||
//Flags used by the linker during RELWITHDEBINFO builds.
|
||||
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||
|
||||
//Enable/Disable output of compile commands during generation.
|
||||
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
|
||||
|
||||
//Value Computed by CMake.
|
||||
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/build/CMakeFiles/pkgRedirects
|
||||
|
||||
//Install path prefix, prepended onto install directories.
|
||||
CMAKE_INSTALL_PREFIX:PATH=/Users/nickfisher/Documents/emsdk/upstream/emscripten/cache/sysroot
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_LINKER:FILEPATH=/usr/bin/ld
|
||||
|
||||
//Program used to build from build.ninja files.
|
||||
CMAKE_MAKE_PROGRAM:FILEPATH=/opt/homebrew/bin/ninja
|
||||
|
||||
//Flags used by the linker during the creation of modules during
|
||||
// all build types.
|
||||
CMAKE_MODULE_LINKER_FLAGS:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of modules during
|
||||
// DEBUG builds.
|
||||
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of modules during
|
||||
// MINSIZEREL builds.
|
||||
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of modules during
|
||||
// RELEASE builds.
|
||||
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of modules during
|
||||
// RELWITHDEBINFO builds.
|
||||
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_OBJCOPY:FILEPATH=CMAKE_OBJCOPY-NOTFOUND
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
|
||||
|
||||
//Value Computed by CMake
|
||||
CMAKE_PROJECT_DESCRIPTION:STATIC=
|
||||
|
||||
//Value Computed by CMake
|
||||
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
||||
|
||||
//Value Computed by CMake
|
||||
CMAKE_PROJECT_NAME:STATIC=flutter_filament
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_READELF:FILEPATH=CMAKE_READELF-NOTFOUND
|
||||
|
||||
//Flags used by the linker during the creation of shared libraries
|
||||
// during all build types.
|
||||
CMAKE_SHARED_LINKER_FLAGS:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of shared libraries
|
||||
// during DEBUG builds.
|
||||
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of shared libraries
|
||||
// during MINSIZEREL builds.
|
||||
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of shared libraries
|
||||
// during RELEASE builds.
|
||||
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of shared libraries
|
||||
// during RELWITHDEBINFO builds.
|
||||
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||
|
||||
//If set, runtime paths are not added when installing shared libraries,
|
||||
// but are added when building.
|
||||
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
|
||||
|
||||
//If set, runtime paths are not added when using shared libraries.
|
||||
CMAKE_SKIP_RPATH:BOOL=NO
|
||||
|
||||
//Flags used by the linker during the creation of static libraries
|
||||
// during all build types.
|
||||
CMAKE_STATIC_LINKER_FLAGS:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of static libraries
|
||||
// during DEBUG builds.
|
||||
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of static libraries
|
||||
// during MINSIZEREL builds.
|
||||
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of static libraries
|
||||
// during RELEASE builds.
|
||||
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
|
||||
|
||||
//Flags used by the linker during the creation of static libraries
|
||||
// during RELWITHDEBINFO builds.
|
||||
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_STRIP:FILEPATH=/usr/bin/strip
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
|
||||
|
||||
//No help, variable specified on the command line.
|
||||
CMAKE_TOOLCHAIN_FILE:UNINITIALIZED=/Users/nickfisher/Documents/emsdk/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake
|
||||
|
||||
//If this value is on, makefiles will be generated without the
|
||||
// .SILENT directive, and all commands will be echoed to the console
|
||||
// during the make. This is useful for debugging only. With Visual
|
||||
// Studio IDE projects all commands are done without /nologo.
|
||||
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||
|
||||
//If true, we are targeting Emscripten output.
|
||||
EMSCRIPTEN:BOOL=1
|
||||
|
||||
//Force C/C++ compiler
|
||||
EMSCRIPTEN_FORCE_COMPILERS:BOOL=ON
|
||||
|
||||
//If set, static library targets generate LLVM bitcode files (.bc).
|
||||
// If disabled (default), UNIX ar archives (.a) are generated.
|
||||
EMSCRIPTEN_GENERATE_BITCODE_STATIC_LIBRARIES:BOOL=OFF
|
||||
|
||||
//Value Computed by CMake
|
||||
flutter_filament_BINARY_DIR:STATIC=/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/build
|
||||
|
||||
//Value Computed by CMake
|
||||
flutter_filament_IS_TOP_LEVEL:STATIC=ON
|
||||
|
||||
//Value Computed by CMake
|
||||
flutter_filament_SOURCE_DIR:STATIC=/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web
|
||||
|
||||
|
||||
########################
|
||||
# INTERNAL cache entries
|
||||
########################
|
||||
|
||||
//ADVANCED property for variable: CMAKE_ADDR2LINE
|
||||
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
|
||||
//This is the directory where this CMakeCache.txt was created
|
||||
CMAKE_CACHEFILE_DIR:INTERNAL=/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/build
|
||||
//Major version of cmake used to create the current loaded cache
|
||||
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
||||
//Minor version of cmake used to create the current loaded cache
|
||||
CMAKE_CACHE_MINOR_VERSION:INTERNAL=27
|
||||
//Patch version of cmake used to create the current loaded cache
|
||||
CMAKE_CACHE_PATCH_VERSION:INTERNAL=3
|
||||
//Path to CMake executable.
|
||||
CMAKE_COMMAND:INTERNAL=/opt/homebrew/Cellar/cmake/3.27.3/bin/cmake
|
||||
//Path to cpack program executable.
|
||||
CMAKE_CPACK_COMMAND:INTERNAL=/opt/homebrew/Cellar/cmake/3.27.3/bin/cpack
|
||||
//Path to ctest program executable.
|
||||
CMAKE_CTEST_COMMAND:INTERNAL=/opt/homebrew/Cellar/cmake/3.27.3/bin/ctest
|
||||
//ADVANCED property for variable: CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS
|
||||
CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_FLAGS
|
||||
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
|
||||
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
|
||||
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
|
||||
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_COMPILER_CLANG_SCAN_DEPS
|
||||
CMAKE_C_COMPILER_CLANG_SCAN_DEPS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_FLAGS
|
||||
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
|
||||
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
|
||||
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
|
||||
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_DLLTOOL
|
||||
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
|
||||
//Path to cache edit program executable.
|
||||
CMAKE_EDIT_COMMAND:INTERNAL=/opt/homebrew/Cellar/cmake/3.27.3/bin/ccmake
|
||||
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
|
||||
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
|
||||
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
|
||||
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
|
||||
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
|
||||
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
|
||||
//Name of external makefile project generator.
|
||||
CMAKE_EXTRA_GENERATOR:INTERNAL=
|
||||
//Name of generator.
|
||||
CMAKE_GENERATOR:INTERNAL=Ninja
|
||||
//Generator instance identifier.
|
||||
CMAKE_GENERATOR_INSTANCE:INTERNAL=
|
||||
//Name of generator platform.
|
||||
CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
||||
//Name of generator toolset.
|
||||
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
||||
//Source directory with the top level CMakeLists.txt file for this
|
||||
// project
|
||||
CMAKE_HOME_DIRECTORY:INTERNAL=/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web
|
||||
//ADVANCED property for variable: CMAKE_LINKER
|
||||
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
|
||||
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
||||
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
|
||||
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
|
||||
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
|
||||
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//number of local generators
|
||||
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_OBJCOPY
|
||||
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_OBJDUMP
|
||||
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
|
||||
//Platform information initialized
|
||||
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_READELF
|
||||
CMAKE_READELF-ADVANCED:INTERNAL=1
|
||||
//Path to CMake installation.
|
||||
CMAKE_ROOT:INTERNAL=/opt/homebrew/Cellar/cmake/3.27.3/share/cmake
|
||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
||||
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
||||
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
|
||||
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
|
||||
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
|
||||
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_SKIP_RPATH
|
||||
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
|
||||
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
|
||||
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
|
||||
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
|
||||
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
|
||||
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_STRIP
|
||||
CMAKE_STRIP-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_TAPI
|
||||
CMAKE_TAPI-ADVANCED:INTERNAL=1
|
||||
//uname command
|
||||
CMAKE_UNAME:INTERNAL=/usr/bin/uname
|
||||
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
||||
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
||||
|
||||
@@ -0,0 +1,74 @@
|
||||
set(CMAKE_C_COMPILER "/Users/nickfisher/Documents/emsdk/upstream/emscripten/emcc")
|
||||
set(CMAKE_C_COMPILER_ARG1 "")
|
||||
set(CMAKE_C_COMPILER_ID "Clang")
|
||||
set(CMAKE_C_COMPILER_VERSION "18.0.0")
|
||||
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
||||
set(CMAKE_C_COMPILER_WRAPPER "")
|
||||
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
|
||||
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "")
|
||||
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23")
|
||||
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
|
||||
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
|
||||
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
|
||||
set(CMAKE_C17_COMPILE_FEATURES "c_std_17")
|
||||
set(CMAKE_C23_COMPILE_FEATURES "c_std_23")
|
||||
|
||||
set(CMAKE_C_PLATFORM_ID "emscripten")
|
||||
set(CMAKE_C_SIMULATE_ID "")
|
||||
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU")
|
||||
set(CMAKE_C_SIMULATE_VERSION "")
|
||||
|
||||
|
||||
|
||||
|
||||
set(CMAKE_AR "/Users/nickfisher/Documents/emsdk/upstream/emscripten/emar")
|
||||
set(CMAKE_C_COMPILER_AR "/Users/nickfisher/Documents/emsdk/upstream/emscripten/emar")
|
||||
set(CMAKE_RANLIB "/Users/nickfisher/Documents/emsdk/upstream/emscripten/emranlib")
|
||||
set(CMAKE_C_COMPILER_RANLIB "/Users/nickfisher/Documents/emsdk/upstream/emscripten/emranlib")
|
||||
set(CMAKE_LINKER "/usr/bin/ld")
|
||||
set(CMAKE_MT "")
|
||||
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||
set(CMAKE_COMPILER_IS_GNUCC )
|
||||
set(CMAKE_C_COMPILER_LOADED 1)
|
||||
set(CMAKE_C_COMPILER_WORKS TRUE)
|
||||
set(CMAKE_C_ABI_COMPILED )
|
||||
|
||||
set(CMAKE_C_COMPILER_ENV_VAR "CC")
|
||||
|
||||
set(CMAKE_C_COMPILER_ID_RUN 1)
|
||||
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
|
||||
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||
set(CMAKE_C_LINKER_PREFERENCE 10)
|
||||
set(CMAKE_C_LINKER_DEPFILE_SUPPORTED )
|
||||
|
||||
# Save compiler ABI information.
|
||||
set(CMAKE_C_SIZEOF_DATA_PTR "4")
|
||||
set(CMAKE_C_COMPILER_ABI "")
|
||||
set(CMAKE_C_BYTE_ORDER "")
|
||||
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
|
||||
|
||||
if(CMAKE_C_SIZEOF_DATA_PTR)
|
||||
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
|
||||
endif()
|
||||
|
||||
if(CMAKE_C_COMPILER_ABI)
|
||||
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
|
||||
endif()
|
||||
|
||||
if(CMAKE_C_LIBRARY_ARCHITECTURE)
|
||||
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||
endif()
|
||||
|
||||
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
|
||||
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
|
||||
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
|
||||
endif()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Users/nickfisher/Documents/emsdk/upstream/emscripten/cache/sysroot/include")
|
||||
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
|
||||
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "")
|
||||
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||
@@ -0,0 +1,85 @@
|
||||
set(CMAKE_CXX_COMPILER "/Users/nickfisher/Documents/emsdk/upstream/emscripten/em++")
|
||||
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||
set(CMAKE_CXX_COMPILER_ID "Clang")
|
||||
set(CMAKE_CXX_COMPILER_VERSION "18.0.0")
|
||||
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
|
||||
set(CMAKE_CXX_COMPILER_WRAPPER "")
|
||||
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98")
|
||||
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "")
|
||||
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23")
|
||||
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
|
||||
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
|
||||
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
|
||||
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
|
||||
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
|
||||
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
|
||||
|
||||
set(CMAKE_CXX_PLATFORM_ID "emscripten")
|
||||
set(CMAKE_CXX_SIMULATE_ID "")
|
||||
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
|
||||
set(CMAKE_CXX_SIMULATE_VERSION "")
|
||||
|
||||
|
||||
|
||||
|
||||
set(CMAKE_AR "/Users/nickfisher/Documents/emsdk/upstream/emscripten/emar")
|
||||
set(CMAKE_CXX_COMPILER_AR "/Users/nickfisher/Documents/emsdk/upstream/emscripten/emar")
|
||||
set(CMAKE_RANLIB "/Users/nickfisher/Documents/emsdk/upstream/emscripten/emranlib")
|
||||
set(CMAKE_CXX_COMPILER_RANLIB "/Users/nickfisher/Documents/emsdk/upstream/emscripten/emranlib")
|
||||
set(CMAKE_LINKER "/usr/bin/ld")
|
||||
set(CMAKE_MT "")
|
||||
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||
set(CMAKE_COMPILER_IS_GNUCXX )
|
||||
set(CMAKE_CXX_COMPILER_LOADED 1)
|
||||
set(CMAKE_CXX_COMPILER_WORKS TRUE)
|
||||
set(CMAKE_CXX_ABI_COMPILED )
|
||||
|
||||
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
|
||||
|
||||
set(CMAKE_CXX_COMPILER_ID_RUN 1)
|
||||
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m)
|
||||
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||
|
||||
foreach (lang C OBJC OBJCXX)
|
||||
if (CMAKE_${lang}_COMPILER_ID_RUN)
|
||||
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
|
||||
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
|
||||
endforeach()
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
set(CMAKE_CXX_LINKER_PREFERENCE 30)
|
||||
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
|
||||
set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED )
|
||||
|
||||
# Save compiler ABI information.
|
||||
set(CMAKE_CXX_SIZEOF_DATA_PTR "4")
|
||||
set(CMAKE_CXX_COMPILER_ABI "")
|
||||
set(CMAKE_CXX_BYTE_ORDER "")
|
||||
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
|
||||
|
||||
if(CMAKE_CXX_SIZEOF_DATA_PTR)
|
||||
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
|
||||
endif()
|
||||
|
||||
if(CMAKE_CXX_COMPILER_ABI)
|
||||
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
|
||||
endif()
|
||||
|
||||
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
|
||||
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||
endif()
|
||||
|
||||
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
|
||||
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
|
||||
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
|
||||
endif()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Users/nickfisher/Documents/emsdk/upstream/emscripten/cache/sysroot/include")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||
@@ -0,0 +1,15 @@
|
||||
set(CMAKE_HOST_SYSTEM "Darwin-22.6.0")
|
||||
set(CMAKE_HOST_SYSTEM_NAME "Darwin")
|
||||
set(CMAKE_HOST_SYSTEM_VERSION "22.6.0")
|
||||
set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64")
|
||||
|
||||
include("/Users/nickfisher/Documents/emsdk/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake")
|
||||
|
||||
set(CMAKE_SYSTEM "Emscripten-1")
|
||||
set(CMAKE_SYSTEM_NAME "Emscripten")
|
||||
set(CMAKE_SYSTEM_VERSION "1")
|
||||
set(CMAKE_SYSTEM_PROCESSOR "x86")
|
||||
|
||||
set(CMAKE_CROSSCOMPILING "TRUE")
|
||||
|
||||
set(CMAKE_SYSTEM_LOADED 1)
|
||||
12
flutter_filament/web/build/CMakeFiles/CMakeConfigureLog.yaml
Normal file
12
flutter_filament/web/build/CMakeFiles/CMakeConfigureLog.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
---
|
||||
events:
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "/opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeDetermineSystem.cmake:206 (message)"
|
||||
- "CMakeLists.txt:4 (project)"
|
||||
message: |
|
||||
The target system is: Emscripten - 1 - x86
|
||||
The host system is: Darwin - 22.6.0 - arm64
|
||||
...
|
||||
@@ -0,0 +1,4 @@
|
||||
/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/build/CMakeFiles/filament_shaders.dir
|
||||
/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/build/CMakeFiles/flutter_filament_plugin.dir
|
||||
/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/build/CMakeFiles/edit_cache.dir
|
||||
/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/build/CMakeFiles/rebuild_cache.dir
|
||||
1
flutter_filament/web/build/CMakeFiles/cmake.check_cache
Normal file
1
flutter_filament/web/build/CMakeFiles/cmake.check_cache
Normal file
@@ -0,0 +1 @@
|
||||
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
83
flutter_filament/web/build/CMakeFiles/rules.ninja
Normal file
83
flutter_filament/web/build/CMakeFiles/rules.ninja
Normal file
@@ -0,0 +1,83 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Ninja" Generator, CMake Version 3.27
|
||||
|
||||
# This file contains all the rules used to get the outputs files
|
||||
# built from the input files.
|
||||
# It is included in the main 'build.ninja'.
|
||||
|
||||
# =============================================================================
|
||||
# Project: flutter_filament
|
||||
# Configurations: Debug
|
||||
# =============================================================================
|
||||
# =============================================================================
|
||||
|
||||
#############################################
|
||||
# Rule for compiling C files.
|
||||
|
||||
rule C_COMPILER__filament_shaders_unscanned_Debug
|
||||
depfile = $DEP_FILE
|
||||
deps = gcc
|
||||
command = ${LAUNCHER}${CODE_CHECK}/Users/nickfisher/Documents/emsdk/upstream/emscripten/emcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||
description = Building C object $out
|
||||
|
||||
|
||||
#############################################
|
||||
# Rule for linking C static library.
|
||||
|
||||
rule C_STATIC_LIBRARY_LINKER__filament_shaders_Debug
|
||||
command = $PRE_LINK && /opt/homebrew/Cellar/cmake/3.27.3/bin/cmake -E rm -f $TARGET_FILE && /Users/nickfisher/Documents/emsdk/upstream/emscripten/emar qc $TARGET_FILE $LINK_FLAGS $in && /Users/nickfisher/Documents/emsdk/upstream/emscripten/emranlib $TARGET_FILE && /opt/homebrew/Cellar/cmake/3.27.3/bin/cmake -E touch $TARGET_FILE && $POST_BUILD
|
||||
description = Linking C static library $TARGET_FILE
|
||||
restat = $RESTAT
|
||||
|
||||
|
||||
#############################################
|
||||
# Rule for compiling CXX files.
|
||||
|
||||
rule CXX_COMPILER__flutter_filament_plugin_unscanned_Debug
|
||||
depfile = $DEP_FILE
|
||||
deps = gcc
|
||||
command = ${LAUNCHER}${CODE_CHECK}/Users/nickfisher/Documents/emsdk/upstream/emscripten/em++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||
description = Building CXX object $out
|
||||
|
||||
|
||||
#############################################
|
||||
# Rule for linking CXX executable.
|
||||
|
||||
rule CXX_EXECUTABLE_LINKER__flutter_filament_plugin_Debug
|
||||
command = $PRE_LINK && /Users/nickfisher/Documents/emsdk/upstream/emscripten/em++ $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD
|
||||
description = Linking CXX executable $TARGET_FILE
|
||||
restat = $RESTAT
|
||||
|
||||
|
||||
#############################################
|
||||
# Rule for running custom commands.
|
||||
|
||||
rule CUSTOM_COMMAND
|
||||
command = $COMMAND
|
||||
description = $DESC
|
||||
|
||||
|
||||
#############################################
|
||||
# Rule for re-running cmake.
|
||||
|
||||
rule RERUN_CMAKE
|
||||
command = /opt/homebrew/Cellar/cmake/3.27.3/bin/cmake --regenerate-during-build -S/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web -B/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/build
|
||||
description = Re-running CMake...
|
||||
generator = 1
|
||||
|
||||
|
||||
#############################################
|
||||
# Rule for cleaning all built files.
|
||||
|
||||
rule CLEAN
|
||||
command = /opt/homebrew/bin/ninja $FILE_ARG -t clean $TARGETS
|
||||
description = Cleaning all built files...
|
||||
|
||||
|
||||
#############################################
|
||||
# Rule for printing all primary targets available.
|
||||
|
||||
rule HELP
|
||||
command = /opt/homebrew/bin/ninja -t targets
|
||||
description = All primary targets available:
|
||||
|
||||
250
flutter_filament/web/build/build.ninja
Normal file
250
flutter_filament/web/build/build.ninja
Normal file
@@ -0,0 +1,250 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Ninja" Generator, CMake Version 3.27
|
||||
|
||||
# This file contains all the build statements describing the
|
||||
# compilation DAG.
|
||||
|
||||
# =============================================================================
|
||||
# Write statements declared in CMakeLists.txt:
|
||||
#
|
||||
# Which is the root file.
|
||||
# =============================================================================
|
||||
|
||||
# =============================================================================
|
||||
# Project: flutter_filament
|
||||
# Configurations: Debug
|
||||
# =============================================================================
|
||||
|
||||
#############################################
|
||||
# Minimal version of Ninja required by this file
|
||||
|
||||
ninja_required_version = 1.5
|
||||
|
||||
|
||||
#############################################
|
||||
# Set configuration variable for custom commands.
|
||||
|
||||
CONFIGURATION = Debug
|
||||
# =============================================================================
|
||||
# Include auxiliary files.
|
||||
|
||||
|
||||
#############################################
|
||||
# Include rules file.
|
||||
|
||||
include CMakeFiles/rules.ninja
|
||||
|
||||
# =============================================================================
|
||||
|
||||
#############################################
|
||||
# Logical path to working directory; prefix for absolute paths.
|
||||
|
||||
cmake_ninja_workdir = /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/build/
|
||||
# =============================================================================
|
||||
# Object build statements for STATIC_LIBRARY target filament_shaders
|
||||
|
||||
|
||||
#############################################
|
||||
# Order-only phony target for filament_shaders
|
||||
|
||||
build cmake_object_order_depends_target_filament_shaders: phony || CMakeFiles/filament_shaders.dir
|
||||
|
||||
build CMakeFiles/filament_shaders.dir/include/material/image.c.o: C_COMPILER__filament_shaders_unscanned_Debug /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/include/material/image.c || cmake_object_order_depends_target_filament_shaders
|
||||
DEP_FILE = CMakeFiles/filament_shaders.dir/include/material/image.c.o.d
|
||||
FLAGS = -Oz -g0 -g
|
||||
INCLUDES = -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/src -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include/filament -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../example/linux
|
||||
OBJECT_DIR = CMakeFiles/filament_shaders.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/filament_shaders.dir/include/material
|
||||
|
||||
|
||||
# =============================================================================
|
||||
# Link build statements for STATIC_LIBRARY target filament_shaders
|
||||
|
||||
|
||||
#############################################
|
||||
# Link the static library libfilament_shaders.a
|
||||
|
||||
build libfilament_shaders.a: C_STATIC_LIBRARY_LINKER__filament_shaders_Debug CMakeFiles/filament_shaders.dir/include/material/image.c.o
|
||||
LANGUAGE_COMPILE_FLAGS = -Oz -g0 -g
|
||||
OBJECT_DIR = CMakeFiles/filament_shaders.dir
|
||||
POST_BUILD = :
|
||||
PRE_LINK = :
|
||||
TARGET_FILE = libfilament_shaders.a
|
||||
TARGET_PDB = filament_shaders.a.dbg
|
||||
|
||||
# =============================================================================
|
||||
# Object build statements for EXECUTABLE target flutter_filament_plugin
|
||||
|
||||
|
||||
#############################################
|
||||
# Order-only phony target for flutter_filament_plugin
|
||||
|
||||
build cmake_object_order_depends_target_flutter_filament_plugin: phony || cmake_object_order_depends_target_filament_shaders
|
||||
|
||||
build CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o: CXX_COMPILER__flutter_filament_plugin_unscanned_Debug /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp || cmake_object_order_depends_target_flutter_filament_plugin
|
||||
DEFINES = -DFLUTTER_PLUGIN_IMPL
|
||||
DEP_FILE = CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o.d
|
||||
FLAGS = -Wno-missing-field-initializers -Wno-deprecated-literal-operator -stdlib=libc++ -std=c++17 -fPIC -pthread -Oz -g0 -g -std=gnu++17 -fvisibility=hidden
|
||||
INCLUDES = -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/src -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include/filament -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../example/linux
|
||||
OBJECT_DIR = CMakeFiles/flutter_filament_plugin.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src
|
||||
|
||||
build CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o: CXX_COMPILER__flutter_filament_plugin_unscanned_Debug /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp || cmake_object_order_depends_target_flutter_filament_plugin
|
||||
DEFINES = -DFLUTTER_PLUGIN_IMPL
|
||||
DEP_FILE = CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o.d
|
||||
FLAGS = -Wno-missing-field-initializers -Wno-deprecated-literal-operator -stdlib=libc++ -std=c++17 -fPIC -pthread -Oz -g0 -g -std=gnu++17 -fvisibility=hidden
|
||||
INCLUDES = -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/src -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include/filament -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../example/linux
|
||||
OBJECT_DIR = CMakeFiles/flutter_filament_plugin.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src
|
||||
|
||||
build CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o: CXX_COMPILER__flutter_filament_plugin_unscanned_Debug /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp || cmake_object_order_depends_target_flutter_filament_plugin
|
||||
DEFINES = -DFLUTTER_PLUGIN_IMPL
|
||||
DEP_FILE = CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o.d
|
||||
FLAGS = -Wno-missing-field-initializers -Wno-deprecated-literal-operator -stdlib=libc++ -std=c++17 -fPIC -pthread -Oz -g0 -g -std=gnu++17 -fvisibility=hidden
|
||||
INCLUDES = -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/src -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include/filament -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../example/linux
|
||||
OBJECT_DIR = CMakeFiles/flutter_filament_plugin.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src
|
||||
|
||||
build CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentFFIApi.cpp.o: CXX_COMPILER__flutter_filament_plugin_unscanned_Debug /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentFFIApi.cpp || cmake_object_order_depends_target_flutter_filament_plugin
|
||||
DEFINES = -DFLUTTER_PLUGIN_IMPL
|
||||
DEP_FILE = CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentFFIApi.cpp.o.d
|
||||
FLAGS = -Wno-missing-field-initializers -Wno-deprecated-literal-operator -stdlib=libc++ -std=c++17 -fPIC -pthread -Oz -g0 -g -std=gnu++17 -fvisibility=hidden
|
||||
INCLUDES = -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/src -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include/filament -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../example/linux
|
||||
OBJECT_DIR = CMakeFiles/flutter_filament_plugin.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src
|
||||
|
||||
build CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o: CXX_COMPILER__flutter_filament_plugin_unscanned_Debug /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp || cmake_object_order_depends_target_flutter_filament_plugin
|
||||
DEFINES = -DFLUTTER_PLUGIN_IMPL
|
||||
DEP_FILE = CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o.d
|
||||
FLAGS = -Wno-missing-field-initializers -Wno-deprecated-literal-operator -stdlib=libc++ -std=c++17 -fPIC -pthread -Oz -g0 -g -std=gnu++17 -fvisibility=hidden
|
||||
INCLUDES = -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/src -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include/filament -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../example/linux
|
||||
OBJECT_DIR = CMakeFiles/flutter_filament_plugin.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src
|
||||
|
||||
build CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o: CXX_COMPILER__flutter_filament_plugin_unscanned_Debug /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp || cmake_object_order_depends_target_flutter_filament_plugin
|
||||
DEFINES = -DFLUTTER_PLUGIN_IMPL
|
||||
DEP_FILE = CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o.d
|
||||
FLAGS = -Wno-missing-field-initializers -Wno-deprecated-literal-operator -stdlib=libc++ -std=c++17 -fPIC -pthread -Oz -g0 -g -std=gnu++17 -fvisibility=hidden
|
||||
INCLUDES = -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/src -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include/filament -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../example/linux
|
||||
OBJECT_DIR = CMakeFiles/flutter_filament_plugin.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src
|
||||
|
||||
build CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/camutils/Manipulator.cpp.o: CXX_COMPILER__flutter_filament_plugin_unscanned_Debug /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/camutils/Manipulator.cpp || cmake_object_order_depends_target_flutter_filament_plugin
|
||||
DEFINES = -DFLUTTER_PLUGIN_IMPL
|
||||
DEP_FILE = CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/camutils/Manipulator.cpp.o.d
|
||||
FLAGS = -Wno-missing-field-initializers -Wno-deprecated-literal-operator -stdlib=libc++ -std=c++17 -fPIC -pthread -Oz -g0 -g -std=gnu++17 -fvisibility=hidden
|
||||
INCLUDES = -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/src -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include/filament -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../example/linux
|
||||
OBJECT_DIR = CMakeFiles/flutter_filament_plugin.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/camutils
|
||||
|
||||
build CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/camutils/Bookmark.cpp.o: CXX_COMPILER__flutter_filament_plugin_unscanned_Debug /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/camutils/Bookmark.cpp || cmake_object_order_depends_target_flutter_filament_plugin
|
||||
DEFINES = -DFLUTTER_PLUGIN_IMPL
|
||||
DEP_FILE = CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/camutils/Bookmark.cpp.o.d
|
||||
FLAGS = -Wno-missing-field-initializers -Wno-deprecated-literal-operator -stdlib=libc++ -std=c++17 -fPIC -pthread -Oz -g0 -g -std=gnu++17 -fvisibility=hidden
|
||||
INCLUDES = -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/src -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include/filament -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../example/linux
|
||||
OBJECT_DIR = CMakeFiles/flutter_filament_plugin.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/camutils
|
||||
|
||||
build CMakeFiles/flutter_filament_plugin.dir/src/cpp/FlutterFilamentWebApi.cpp.o: CXX_COMPILER__flutter_filament_plugin_unscanned_Debug /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/src/cpp/FlutterFilamentWebApi.cpp || cmake_object_order_depends_target_flutter_filament_plugin
|
||||
DEFINES = -DFLUTTER_PLUGIN_IMPL
|
||||
DEP_FILE = CMakeFiles/flutter_filament_plugin.dir/src/cpp/FlutterFilamentWebApi.cpp.o.d
|
||||
FLAGS = -Wno-missing-field-initializers -Wno-deprecated-literal-operator -stdlib=libc++ -std=c++17 -fPIC -pthread -Oz -g0 -g -std=gnu++17 -fvisibility=hidden
|
||||
INCLUDES = -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/src -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../ios/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../web/include/filament -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/include -I/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../example/linux
|
||||
OBJECT_DIR = CMakeFiles/flutter_filament_plugin.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/flutter_filament_plugin.dir/src/cpp
|
||||
|
||||
|
||||
# =============================================================================
|
||||
# Link build statements for EXECUTABLE target flutter_filament_plugin
|
||||
|
||||
|
||||
#############################################
|
||||
# Link the executable /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/example/assets/web/flutter_filament_plugin.js
|
||||
|
||||
build /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/example/assets/web/flutter_filament_plugin.js: CXX_EXECUTABLE_LINKER__flutter_filament_plugin_Debug CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentFFIApi.cpp.o CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/camutils/Manipulator.cpp.o CMakeFiles/flutter_filament_plugin.dir/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/ios/src/camutils/Bookmark.cpp.o CMakeFiles/flutter_filament_plugin.dir/src/cpp/FlutterFilamentWebApi.cpp.o | libfilament_shaders.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libgltfio_core.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libfilament.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libbackend.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libgeometry.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libdracodec.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libibl-lite.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libktxreader.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libfilaflat.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libfilabridge.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libimage.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libimageio.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libutils.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libstb.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libuberzlib.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libuberarchive.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libmeshoptimizer.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libbasis_transcoder.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libbasis_encoder.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libz.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libzstd.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libpng.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libtinyexr.a || libfilament_shaders.a
|
||||
FLAGS = -Wno-missing-field-initializers -Wno-deprecated-literal-operator -stdlib=libc++ -std=c++17 -fPIC -pthread -Oz -g0 -g
|
||||
LINK_FLAGS = --bind -sALLOW_TABLE_GROWTH=1 -sINITIAL_MEMORY=256MB -sEXPORT_NAME=flutter_filament_plugin -sMAIN_MODULE -sMODULARIZE -sERROR_ON_UNDEFINED_SYMBOLS=0 -sEVAL_CTORS=0 -sEXPORTED_RUNTIME_METHODS=wasmExports,wasmTable -sFULL_ES3 -sASSERTIONS -sPTHREAD_POOL_SIZE=1 -sALLOW_BLOCKING_ON_MAIN_THREAD=1 -sOFFSCREEN_FRAMEBUFFER -sNO_DISABLE_EXCEPTION_CATCHING -sUSE_WEBGL2=1 -sFETCH=1 -sMIN_WEBGL_VERSION=2 -g0 --closure 0
|
||||
LINK_LIBRARIES = libfilament_shaders.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libgltfio_core.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libfilament.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libbackend.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libgeometry.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libdracodec.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libibl-lite.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libktxreader.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libfilaflat.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libfilabridge.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libimage.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libimageio.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libutils.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libstb.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libuberzlib.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libuberarchive.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libmeshoptimizer.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libbasis_transcoder.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libbasis_encoder.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libz.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libzstd.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libpng.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib/debug/libtinyexr.a
|
||||
LINK_PATH = -L/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/lib
|
||||
OBJECT_DIR = CMakeFiles/flutter_filament_plugin.dir
|
||||
POST_BUILD = cd /Users/nickfisher/Documents/polyvox/flutter/flutter_filament && dart run ffigen --config /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/ffigen_wasm.yaml && dart run ffigen --config /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/ffigen_js.yaml && /opt/homebrew/Cellar/cmake/3.27.3/bin/cmake -DINPUTFILE=/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../lib/ffi/web_wasm/generated_bindings.dart -DOUTPUTFILE=/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../lib/ffi/web_wasm/generated_bindings.dart "-DTO_REPLACE=symbol: '" "-DREPLACEMENT=symbol: '_" -P /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/replace_in_file.cmake && /opt/homebrew/Cellar/cmake/3.27.3/bin/cmake -DINPUTFILE=/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../lib/ffi/web_js/generated_bindings.dart -DOUTPUTFILE=/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/../lib/ffi/web_js/generated_bindings.dart "-DTO_REPLACE=import 'dart:ffi' as ffi;" "-DREPLACEMENT=import 'package:wasm_ffi/wasm_ffi.dart' as ffi;" -P /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/replace_in_file.cmake && dart run build_runner build && cd /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/example && flutter build web --profile
|
||||
PRE_LINK = :
|
||||
TARGET_FILE = /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/example/assets/web/flutter_filament_plugin.js
|
||||
TARGET_PDB = flutter_filament_plugin.js.dbg
|
||||
|
||||
|
||||
#############################################
|
||||
# Utility command for edit_cache
|
||||
|
||||
build CMakeFiles/edit_cache.util: CUSTOM_COMMAND
|
||||
COMMAND = cd /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/build && /opt/homebrew/Cellar/cmake/3.27.3/bin/ccmake -S/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web -B/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/build
|
||||
DESC = Running CMake cache editor...
|
||||
pool = console
|
||||
restat = 1
|
||||
|
||||
build edit_cache: phony CMakeFiles/edit_cache.util
|
||||
|
||||
|
||||
#############################################
|
||||
# Utility command for rebuild_cache
|
||||
|
||||
build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
|
||||
COMMAND = cd /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/build && /opt/homebrew/Cellar/cmake/3.27.3/bin/cmake --regenerate-during-build -S/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web -B/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/build
|
||||
DESC = Running CMake to regenerate build system...
|
||||
pool = console
|
||||
restat = 1
|
||||
|
||||
build rebuild_cache: phony CMakeFiles/rebuild_cache.util
|
||||
|
||||
# =============================================================================
|
||||
# Target aliases.
|
||||
|
||||
build filament_shaders: phony libfilament_shaders.a
|
||||
|
||||
build flutter_filament_plugin: phony /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/example/assets/web/flutter_filament_plugin.js
|
||||
|
||||
build flutter_filament_plugin.js: phony /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/example/assets/web/flutter_filament_plugin.js
|
||||
|
||||
# =============================================================================
|
||||
# Folder targets.
|
||||
|
||||
# =============================================================================
|
||||
|
||||
#############################################
|
||||
# Folder: /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/build
|
||||
|
||||
build all: phony libfilament_shaders.a /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/example/assets/web/flutter_filament_plugin.js
|
||||
|
||||
# =============================================================================
|
||||
# Built-in targets
|
||||
|
||||
|
||||
#############################################
|
||||
# Re-run CMake if any of its inputs changed.
|
||||
|
||||
build build.ninja: RERUN_CMAKE | /Users/nickfisher/Documents/emsdk/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/CMakeLists.txt /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeCInformation.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeCXXInformation.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeCommonLanguageInclude.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeGenericSystem.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeInitializeConfigs.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeLanguageInformation.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeSystemSpecificInformation.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/Compiler/Clang-C.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/Compiler/Clang-CXX.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/Compiler/Clang.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/Compiler/GNU.cmake CMakeCache.txt CMakeFiles/3.27.3/CMakeCCompiler.cmake CMakeFiles/3.27.3/CMakeCXXCompiler.cmake CMakeFiles/3.27.3/CMakeSystem.cmake
|
||||
pool = console
|
||||
|
||||
|
||||
#############################################
|
||||
# A missing CMake input file is not an error.
|
||||
|
||||
build /Users/nickfisher/Documents/emsdk/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/CMakeLists.txt /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeCInformation.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeCXXInformation.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeCommonLanguageInclude.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeGenericSystem.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeInitializeConfigs.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeLanguageInformation.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeSystemSpecificInformation.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/Compiler/Clang-C.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/Compiler/Clang-CXX.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/Compiler/Clang.cmake /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/Compiler/GNU.cmake CMakeCache.txt CMakeFiles/3.27.3/CMakeCCompiler.cmake CMakeFiles/3.27.3/CMakeCXXCompiler.cmake CMakeFiles/3.27.3/CMakeSystem.cmake: phony
|
||||
|
||||
|
||||
#############################################
|
||||
# Clean all the built files.
|
||||
|
||||
build clean: CLEAN
|
||||
|
||||
|
||||
#############################################
|
||||
# Print all primary targets available.
|
||||
|
||||
build help: HELP
|
||||
|
||||
|
||||
#############################################
|
||||
# Make the all target the default.
|
||||
|
||||
default all
|
||||
49
flutter_filament/web/build/cmake_install.cmake
Normal file
49
flutter_filament/web/build/cmake_install.cmake
Normal file
@@ -0,0 +1,49 @@
|
||||
# Install script for directory: /Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
set(CMAKE_INSTALL_PREFIX "/Users/nickfisher/Documents/emsdk/upstream/emscripten/cache/sysroot")
|
||||
endif()
|
||||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
if(BUILD_TYPE)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "Debug")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "TRUE")
|
||||
endif()
|
||||
|
||||
# Set default install directory permissions.
|
||||
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||
set(CMAKE_OBJDUMP "/usr/bin/objdump")
|
||||
endif()
|
||||
|
||||
if(CMAKE_INSTALL_COMPONENT)
|
||||
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
|
||||
else()
|
||||
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
|
||||
endif()
|
||||
|
||||
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||
file(WRITE "/Users/nickfisher/Documents/polyvox/flutter/flutter_filament/web/build/${CMAKE_INSTALL_MANIFEST}"
|
||||
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||
3
flutter_filament/web/build/libfilament_shaders.a
Normal file
3
flutter_filament/web/build/libfilament_shaders.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9cc6779315739b7f825326b856882da4b2477b46e14f58fd073d9ea28b23e47e
|
||||
size 19234
|
||||
BIN
flutter_filament/web/build/main.dart.wasm
Normal file
BIN
flutter_filament/web/build/main.dart.wasm
Normal file
Binary file not shown.
BIN
flutter_filament/web/build/skwasm.wasm
Normal file
BIN
flutter_filament/web/build/skwasm.wasm
Normal file
Binary file not shown.
3
flutter_filament/web/lib/libbackend.a
Normal file
3
flutter_filament/web/lib/libbackend.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eee0a341e5757f9e191e614b7da0cab0af2d59a604d79d6a9bb01cf8e7774f0b
|
||||
size 10111468
|
||||
3
flutter_filament/web/lib/libbasis_encoder.a
Normal file
3
flutter_filament/web/lib/libbasis_encoder.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4019eca79d4bccee14f9b7fbc4986ca77efb5af6d2222949b03fd44f3d812395
|
||||
size 7375212
|
||||
3
flutter_filament/web/lib/libbasis_transcoder.a
Normal file
3
flutter_filament/web/lib/libbasis_transcoder.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1f5067dad455dc4454160927e8d6c99d3a3bab5fc3c953e8e430a3d15523eee2
|
||||
size 1091366
|
||||
3
flutter_filament/web/lib/libcamutils.a
Normal file
3
flutter_filament/web/lib/libcamutils.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:78a208e730d7944feb3021759e00daf1c828f1cab23e41246098b87378e22e01
|
||||
size 234312
|
||||
3
flutter_filament/web/lib/libcivetweb.a
Normal file
3
flutter_filament/web/lib/libcivetweb.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:655b62ea26c41ca62cc3850ecf1118f1c0735200645766ffe12a9180e1df8907
|
||||
size 1204006
|
||||
3
flutter_filament/web/lib/libdracodec.a
Normal file
3
flutter_filament/web/lib/libdracodec.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4657bc8ab1aaf63b6fb2941ad9b4bf1801b9620a87efa6509234c780a4312018
|
||||
size 38874698
|
||||
3
flutter_filament/web/lib/libfilabridge.a
Normal file
3
flutter_filament/web/lib/libfilabridge.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fe28c6b3391432460b53081cbd66d5a10a80a851ca6eecc03439fcc52cf7577b
|
||||
size 1121830
|
||||
3
flutter_filament/web/lib/libfilaflat.a
Normal file
3
flutter_filament/web/lib/libfilaflat.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9c46e7a3f72973daa3a9de155f934c5a8510bd291315bf8029e4bafa91292a69
|
||||
size 981306
|
||||
3
flutter_filament/web/lib/libfilagui.a
Normal file
3
flutter_filament/web/lib/libfilagui.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:721df3a41be6f4bb137c528e94bf3b89617c38ec6713040c3aed63ab23d5313a
|
||||
size 907430
|
||||
3
flutter_filament/web/lib/libfilament-iblprefilter.a
Normal file
3
flutter_filament/web/lib/libfilament-iblprefilter.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4e2093b436d7b133504649e53b18e4131de81f160cce9b343f9ef2e73a26fb3d
|
||||
size 257086
|
||||
3
flutter_filament/web/lib/libfilament.a
Normal file
3
flutter_filament/web/lib/libfilament.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c8050b6ed57d451d1e79d192acd5118ade9860b073c447b87323a6a0c5f024dd
|
||||
size 35488792
|
||||
3
flutter_filament/web/lib/libfilameshio.a
Normal file
3
flutter_filament/web/lib/libfilameshio.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:22cadde3af22a4cdbd28086aaf109d4e1899148d99ba6f528daea20b771f0c9f
|
||||
size 519964
|
||||
3
flutter_filament/web/lib/libgeometry_combined.a
Normal file
3
flutter_filament/web/lib/libgeometry_combined.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fc1cca42d9984f6571c35277a93863ba34c64dd22e06fe81225954b13e15a5e6
|
||||
size 1649864
|
||||
3
flutter_filament/web/lib/libgltfio_core.a
Normal file
3
flutter_filament/web/lib/libgltfio_core.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:64c99015fb16a4fc90a9b7a1c6f0f15af106788f7b2d067f3202a2a7d73021a9
|
||||
size 20036550
|
||||
3
flutter_filament/web/lib/libgtest.a
Normal file
3
flutter_filament/web/lib/libgtest.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3bee92add3827a631d4e2b6e510fe558a713010e4b16e788f5f3b4e232e65012
|
||||
size 3180862
|
||||
3
flutter_filament/web/lib/libibl-lite.a
Normal file
3
flutter_filament/web/lib/libibl-lite.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:99f5810d33ed2eb8e527ee4ffda1ab54c85aad494dffafafebb726753abe4c11
|
||||
size 4067816
|
||||
3
flutter_filament/web/lib/libimage.a
Normal file
3
flutter_filament/web/lib/libimage.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6d8d57162844f191a7fa96386bf4424fd1f203d058567a14cd3358d7fb7c2a2f
|
||||
size 1322118
|
||||
3
flutter_filament/web/lib/libimageio.a
Normal file
3
flutter_filament/web/lib/libimageio.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0dbfc689ede2d02e7b3d693bd82ceb4d96fd16274fc6caf9944885ff7c015c85
|
||||
size 441468
|
||||
3
flutter_filament/web/lib/libimgui.a
Normal file
3
flutter_filament/web/lib/libimgui.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:80807eb12dc7e1c5f1c0b81ed626efc65b9003f79054d5204ffbe28968a867c7
|
||||
size 4244440
|
||||
3
flutter_filament/web/lib/libktxreader.a
Normal file
3
flutter_filament/web/lib/libktxreader.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fcd513463f50b4ffbc9e5dec4e351c67e1d8075f570f771e6a67ac9d38cee33a
|
||||
size 383404
|
||||
3
flutter_filament/web/lib/libmath.a
Normal file
3
flutter_filament/web/lib/libmath.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d1c21e108da7e0ea9fbd3702b1ca646c6eea83f95234fbba956469d858395ef2
|
||||
size 390
|
||||
3
flutter_filament/web/lib/libmathio.a
Normal file
3
flutter_filament/web/lib/libmathio.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c60fd646554f32e5fbc5e7dcc2f5c80a56d6c761d601e3caddeaf5512fa7333f
|
||||
size 234400
|
||||
3
flutter_filament/web/lib/libmeshoptimizer.a
Normal file
3
flutter_filament/web/lib/libmeshoptimizer.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:849672ead2d9a2baf242afe9ec8017ecd4bfd24a5ce417b8d659ccbc1e3348ba
|
||||
size 519206
|
||||
3
flutter_filament/web/lib/libmikktspace.a
Normal file
3
flutter_filament/web/lib/libmikktspace.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fa160ff2456faf79eb02caff867794d263866d23424ffdd5d468813b2f88df72
|
||||
size 132298
|
||||
3
flutter_filament/web/lib/libshaders.a
Normal file
3
flutter_filament/web/lib/libshaders.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1fd7e117c4240fa92dd3ebbdb73c5139c83b429f010b716c45eb42794153368d
|
||||
size 212602
|
||||
3
flutter_filament/web/lib/libsmol-v.a
Normal file
3
flutter_filament/web/lib/libsmol-v.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:584463c70699aef1ab890a524aac05bebfee51bd2939801972b1414062079145
|
||||
size 261174
|
||||
3
flutter_filament/web/lib/libstb.a
Normal file
3
flutter_filament/web/lib/libstb.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cc95704ae4a37e7b60c55e4ec20d41ad3ef9ad9f1d827471dbdcda46a10c835b
|
||||
size 273962
|
||||
3
flutter_filament/web/lib/libuberarchive.a
Normal file
3
flutter_filament/web/lib/libuberarchive.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d5f303c8a6f3096f247a44ea1deab604aa1968d7ea2014d0940a65df5c056bcc
|
||||
size 63460
|
||||
3
flutter_filament/web/lib/libuberzlib.a
Normal file
3
flutter_filament/web/lib/libuberzlib.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2a85783edb19dbdda69d4cf3dd9f4caae9647521b242ab52058a2a9dacf8b1e5
|
||||
size 640804
|
||||
3
flutter_filament/web/lib/libutils.a
Normal file
3
flutter_filament/web/lib/libutils.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:137f9ae3c004541a661a6eb435d7b2f43f7d5c882a34c514409e2bc61825dcb1
|
||||
size 2990668
|
||||
3
flutter_filament/web/lib/libviewer.a
Normal file
3
flutter_filament/web/lib/libviewer.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c4b55a8f3604326c50a7609f2429e0d713f48946bce94043eceb0c038efb68cf
|
||||
size 3212920
|
||||
3
flutter_filament/web/lib/libvkshaders.a
Normal file
3
flutter_filament/web/lib/libvkshaders.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0cc6942fd1531ae2912948035b42824e54267197ae21fdceeccc45007e64ab70
|
||||
size 3002
|
||||
3
flutter_filament/web/lib/libz.a
Normal file
3
flutter_filament/web/lib/libz.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c474d8c297275aca4daf6a50a6bb2ed333a2e6ea27d690f3aadd8fd17947db96
|
||||
size 249984
|
||||
3
flutter_filament/web/lib/libzstd.a
Normal file
3
flutter_filament/web/lib/libzstd.a
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c8909f37a859a6a9f23297a81febb20f827ccd2433a6d659a58dc3886ea7abcf
|
||||
size 3601048
|
||||
Reference in New Issue
Block a user