Initial commit
This commit is contained in:
14
CMakeLists.txt
Normal file
14
CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
cmake_minimum_required(VERSION 3.25)
|
||||
project(BrainfuckInterpreter)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
|
||||
# find_package(Boost 1.81 COMPONENTS program_options REQUIRED)
|
||||
|
||||
include_directories(include)
|
||||
|
||||
add_executable(bfuck
|
||||
src/main.cpp
|
||||
)
|
||||
|
||||
# target_link_libraries(lasm Boost::program_options)
|
Reference in New Issue
Block a user