mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-13 03:32:28 +00:00
44 lines
763 B
Text
44 lines
763 B
Text
|
|
file(GLOB GX_SOURCES
|
||
|
|
"*.cpp"
|
||
|
|
"buffer/*.cpp"
|
||
|
|
"font/*.cpp"
|
||
|
|
"shader/*.cpp"
|
||
|
|
"texture/*.cpp"
|
||
|
|
)
|
||
|
|
|
||
|
|
if(WHOA_SYSTEM_MAC)
|
||
|
|
file(GLOB GLL_SOURCES "gll/*.cpp" "gll/*.mm")
|
||
|
|
set_source_files_properties(${GLL_SOURCES}
|
||
|
|
PROPERTIES COMPILE_FLAGS "-x objective-c++"
|
||
|
|
)
|
||
|
|
list(APPEND GX_SOURCES ${GLL_SOURCES})
|
||
|
|
endif()
|
||
|
|
|
||
|
|
add_library(gx STATIC ${GX_SOURCES})
|
||
|
|
|
||
|
|
target_include_directories(gx
|
||
|
|
PRIVATE
|
||
|
|
${CMAKE_SOURCE_DIR}/src
|
||
|
|
)
|
||
|
|
|
||
|
|
target_link_libraries(gx
|
||
|
|
PRIVATE
|
||
|
|
event
|
||
|
|
math
|
||
|
|
model
|
||
|
|
ui
|
||
|
|
util
|
||
|
|
PUBLIC
|
||
|
|
freetype-2.0
|
||
|
|
storm
|
||
|
|
tempest
|
||
|
|
)
|
||
|
|
|
||
|
|
if(WHOA_SYSTEM_MAC)
|
||
|
|
target_link_libraries(gx
|
||
|
|
PRIVATE
|
||
|
|
"-framework AppKit"
|
||
|
|
"-framework OpenGL"
|
||
|
|
)
|
||
|
|
endif()
|