15 lines
320 B
CMake
15 lines
320 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
project(deerith_studio LANGUAGES CXX)
|
|
|
|
file(GLOB_RECURSE STUDIO_SOURCES CONFIGURE_DEPENDS
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp
|
|
)
|
|
|
|
add_executable(deerith_studio ${STUDIO_SOURCES})
|
|
|
|
target_link_libraries(deerith_studio
|
|
PUBLIC
|
|
deerith::core
|
|
deerith::graphics
|
|
)
|