10 lines
186 B
CMake
10 lines
186 B
CMake
cmake_minimum_required(VERSION 3.18.0)
|
|
|
|
project(rubik)
|
|
|
|
add_compile_options( -g )
|
|
|
|
file (GLOB_RECURSE rubik_SOURCES CONFIGURE_DEPENDS "src/*.cc")
|
|
|
|
add_executable(rubik ${rubik_SOURCES})
|