13 lines
327 B
CMake
13 lines
327 B
CMake
cmake_minimum_required(VERSION 3.25)
|
|
project(LogisimAssembler)
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
find_package(Boost 1.81 COMPONENTS program_options REQUIRED)
|
|
|
|
add_executable(LogisimAssembler
|
|
src/main.cpp
|
|
src/lexer/Token.cpp
|
|
src/lexer/Lexer.cpp)
|
|
|
|
target_link_libraries(LogisimAssembler Boost::program_options) |