Add basic CMake config

This commit is contained in:
Ruakij 2022-01-13 00:48:15 +01:00
parent af45216507
commit 48a474287e
2 changed files with 8 additions and 0 deletions

5
CMakeLists.txt Normal file
View File

@ -0,0 +1,5 @@
cmake_minimum_required(VERSION 3.22.1)
project(LTDFS)
add_executable(${PROJECT_NAME} src/main.cpp)

3
src/main.cpp Normal file
View File

@ -0,0 +1,3 @@
int main() {
}