parent
ed9a3ab957
commit
9a32641a99
|
@ -2,6 +2,8 @@ cmake_minimum_required(VERSION 3.2)
|
|||
|
||||
include(appInfo.cmake)
|
||||
|
||||
project(${appName})
|
||||
|
||||
# Build and install main executable
|
||||
add_subdirectory(rhubarb)
|
||||
|
||||
|
|
|
@ -5,8 +5,6 @@ include("../appInfo.cmake")
|
|||
# Support legacy OS X versions
|
||||
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.10" CACHE STRING "Minimum OS X deployment version")
|
||||
|
||||
project(${appName})
|
||||
|
||||
# Enable C++17
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
#include "ProgressBar.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <future>
|
||||
#include <chrono>
|
||||
#include <format.h>
|
||||
#include <boost/algorithm/clamp.hpp>
|
||||
#include <cmath>
|
||||
#include <thread>
|
||||
|
||||
using std::string;
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#include <exception>
|
||||
|
||||
#include "exceptions.h"
|
||||
|
||||
using std::string;
|
||||
|
|
Loading…
Reference in New Issue