diff --git a/README.md b/README.md index 0c69a1e..9e1c073 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# stationapi [![Build Status](https://travis-ci.com/apathyboy/stationapi.svg?token=FbjsTwsn9ctKssvZJqCa&branch=master)](https://travis-ci.com/apathyboy/stationapi) # +# stationapi [![Build Status](https://travis-ci.org/apathyboy/stationapi.svg?branch=master)](https://travis-ci.com/apathyboy/stationapi) # A base library at the core of applications that implement chat and login functionality across galaxies. diff --git a/cmake/ModernCpp.cmake b/cmake/ModernCpp.cmake index cd1da3b..b3499ef 100644 --- a/cmake/ModernCpp.cmake +++ b/cmake/ModernCpp.cmake @@ -1,8 +1,9 @@ if (${CMAKE_CXX_COMPILER_ID} MATCHES "Clang") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -stdlib=libc++") - if (NOT APPLE) - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -lc++abi") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14") + if (APPLE) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -stdlib=libc++") + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stdlib=libc++") endif () elseif (${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14") diff --git a/src/stationapi/Node.hpp b/src/stationapi/Node.hpp index 7353495..6ce98a3 100644 --- a/src/stationapi/Node.hpp +++ b/src/stationapi/Node.hpp @@ -6,6 +6,7 @@ #include #include #include +#include #include template