Created
March 28, 2019 09:05
-
-
Save mur6/f113156319683f89832fa4fee5ecff9d to your computer and use it in GitHub Desktop.
# Boost ライブラリを検索
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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