Created
April 9, 2018 20:07
-
-
Save andresfelipemendez/e3517d1278aaefe1b30de954c8a49183 to your computer and use it in GitHub Desktop.
include boost beast :)
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.11) | |
| find_package(Boost 1.66 REQUIRED COMPONENTS system) | |
| if(Boost_FOUND) | |
| include_directories(${Boost_INCLUDE_DIRS}) | |
| link_directories(${Boost_LIBRARY_DIR}) | |
| add_executable(progname main.cpp) | |
| target_link_libraries(progname ${Boost_LIBRARIES}) | |
| endif() | |
| # set aditional linraries directores |
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 -G "Visual Studio 14 2015 Win64" .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment