Files
Text-Adventure/CMakeLists.txt~
T

12 lines
262 B
Plaintext
Raw Normal View History

2026-08-07 13:10:07 -05:00
cmake_minimum_required(VERSION 4.2)
project(Text-Adventure)
set(SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.cpp)
add_executable(Text-Adventure ${SOURCES})
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/Engine)
target_link_libraries(Text-Adventure PUBLIC Engine)