You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
302 B
12 lines
302 B
project(kaufland)
|
|
set (CMAKE_CXX_STANDARD 14)
|
|
|
|
set(SOURCES
|
|
src/source-files/Ware.cpp
|
|
src/source-files/WarenStorage.cpp
|
|
src/source-files/StorageEditor.cpp
|
|
src/source-files/InputManager.cpp
|
|
)
|
|
|
|
set(COMBINED_SOURCES ${SOURCES} src/main.cpp)
|
|
add_executable(kaufland ${COMBINED_SOURCES})
|