mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-06-12 05:10:37 +00:00
23 lines
533 B
CMake
23 lines
533 B
CMake
cmake_minimum_required(VERSION 3.11)
|
|
project(wal)
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
add_library(wal
|
|
sources/Entity/Entity.hpp
|
|
sources/Component/Component.hpp
|
|
sources/System/System.hpp
|
|
sources/Wal.hpp
|
|
sources/Scene/Scene.cpp
|
|
sources/Scene/Scene.hpp
|
|
sources/Exception/WalError.cpp
|
|
sources/Exception/WalError.hpp
|
|
sources/Entity/Entity.cpp
|
|
sources/Component/Component.cpp
|
|
sources/Models/Callback.hpp
|
|
sources/View/View.hpp
|
|
sources/System/ISystem.hpp
|
|
sources/Models/TypeHolder.hpp
|
|
)
|
|
|
|
target_include_directories(wal PUBLIC sources) |