1

CMake: Initial Project Structure

This commit is contained in:
2023-03-20 15:38:42 +01:00
parent 5ef1940336
commit a71ff6f6f3
12 changed files with 62 additions and 0 deletions

6
CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.25)
project(LogisimAssembler)
set(CMAKE_CXX_STANDARD 20)
add_executable(LogisimAssembler main.cpp)