15 lines
713 B
CMake
15 lines
713 B
CMake
# This is only meant to be included as a subdirectory in another project.
|
|
# It assumes that targets 'glfw' and 'webgpu' exist.
|
|
# Look at examples/CMakeLists.txt to see how to use it in a project.
|
|
|
|
# The glfw3webgpu target
|
|
add_library(glfw3webgpu STATIC glfw3webgpu.c)
|
|
target_include_directories(glfw3webgpu PUBLIC .)
|
|
target_link_libraries(glfw3webgpu PUBLIC glfw webgpu)
|
|
|
|
# Copy compile definitions that are PRIVATE in glfw
|
|
if (GLFW_BUILD_COCOA)
|
|
target_compile_definitions(glfw3webgpu PRIVATE _GLFW_COCOA)
|
|
target_compile_options(glfw3webgpu PRIVATE -x objective-c)
|
|
target_link_libraries(glfw3webgpu PRIVATE "-framework Cocoa" "-framework CoreVideo" "-framework IOKit" "-framework QuartzCore")
|
|
endif()
|