2021-05-10 06:28:56 +00:00
|
|
|
use_cxx11()
|
|
|
|
|
2021-05-03 19:53:28 +00:00
|
|
|
file(GLOB SRCS *.h
|
|
|
|
flecs.c
|
2021-08-11 08:45:23 +00:00
|
|
|
|
2021-05-03 19:53:28 +00:00
|
|
|
flecs-os_api-stdcpp.cpp
|
|
|
|
)
|
2021-05-10 06:28:56 +00:00
|
|
|
|
2021-01-19 09:44:43 +00:00
|
|
|
add_library(flecs-bundle STATIC ${SRCS})
|
2022-09-29 11:04:25 +00:00
|
|
|
|
|
|
|
if (NOT WIN32)
|
|
|
|
target_compile_options(flecs-bundle PRIVATE "-Wno-enum-constexpr-conversion")
|
|
|
|
endif()
|