Files
Nomi/source/CMakeLists.txt

15 lines
226 B
CMake
Raw Normal View History

2025-10-30 18:08:11 -07:00
# ADD SOURCES HERE
set(SOURCE_FILES
main.c
commands.c
commands.h
editor.h
editor.c
2025-10-31 16:53:27 -07:00
nomi.c
nomi.h
2025-10-30 18:08:11 -07:00
)
add_executable(${PROJECT_NAME} ${SOURCE_FILES})
target_link_libraries(${PROJECT_NAME} TartLib m)