Skip to content

Instantly share code, notes, and snippets.

@mur6
Created March 28, 2019 09:05
Show Gist options
  • Save mur6/f113156319683f89832fa4fee5ecff9d to your computer and use it in GitHub Desktop.
Save mur6/f113156319683f89832fa4fee5ecff9d to your computer and use it in GitHub Desktop.
# Boost ライブラリを検索
cmake_minimum_required(VERSION 3.10)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
project(minecraft LANGUAGES CXX)
find_package(Boost REQUIRED COMPONENTS system)
add_executable(cmd m.cpp)
include_directories(${Boost_INCLUDE_DIRS})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment