36 lines
793 B
CMake
36 lines
793 B
CMake
# Copyright (c) 2021 Dominic Msters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
# Dawn Libraries
|
|
target_link_libraries(${PROJECT_NAME}
|
|
PUBLIC
|
|
glad
|
|
cglm
|
|
stb
|
|
duktape
|
|
)
|
|
|
|
target_include_directories(${PROJECT_NAME}
|
|
PUBLIC
|
|
${CMAKE_CURRENT_LIST_DIR}
|
|
)
|
|
|
|
# Dawn Sources
|
|
file(GLOB_RECURSE SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/dawn/*.c(pp|xx))
|
|
file(GLOB_RECURSE HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/dawn/*.h(pp|xx))
|
|
target_sources(${PROJECT_NAME}
|
|
PRIVATE
|
|
${SOURCES}
|
|
${HEADERS}
|
|
)
|
|
|
|
# Sandbox Game Sources
|
|
file(GLOB_RECURSE SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/sandbox/*.c(pp|xx))
|
|
file(GLOB_RECURSE HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/sandbox/*.h(pp|xx))
|
|
target_sources(${PROJECT_NAME}
|
|
PRIVATE
|
|
${SOURCES}
|
|
${HEADERS}
|
|
) |