5 lines
124 B
CMake
5 lines
124 B
CMake
|
cmake_minimum_required(VERSION 3.28)
|
||
|
|
||
|
add_library(game)
|
||
|
target_sources(game PUBLIC FILE_SET CXX_MODULES FILES src/game.cxx)
|