Skip to content

Commit 34f5d3f

Browse files
authored
Merge pull request #52 from brenocq/fix-build
Fix build
2 parents 124cf6b + 4fdb065 commit 34f5d3f

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

src/atta/pch.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#define ATTA_PRE_COMPILED_HEADER_H
99

1010
#define _USE_MATH_DEFINES // Windows M_PI fix
11+
#include <algorithm>
1112
#include <any>
1213
#include <array>
1314
#include <bitset>

src/extern/solveCurlpp.cmake

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,11 @@ if(ATTA_SYSTEM_NAME MATCHES "Linux")
77
FetchContent_Declare(
88
curlpp
99
GIT_REPOSITORY "https://github.com/jpbarrette/curlpp"
10-
GIT_TAG "v0.8.1"
10+
GIT_TAG "d080e301ec71061c46049d23fedfb8106be3153f"
1111
GIT_PROGRESS TRUE
12-
GIT_SHALLOW TRUE
1312
)
1413
atta_log(Info Extern "Fetching curlpp...")
15-
atta_FetchContent_MakeAvailable(curlpp)
14+
atta_FetchContent_MakeAvailable(curlpp)
1615

1716
# Fix INTERFACE_INCLUDE_DIRECTORIES to not include local build
1817
set_property(TARGET curlpp_static PROPERTY INTERFACE_INCLUDE_DIRECTORIES "")

src/extern/solveImguizmo.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ FetchContent_Declare(
66
GIT_REPOSITORY "https://github.com/CedricGuillemet/ImGuizmo.git"
77
GIT_TAG "ba662b1"
88
GIT_PROGRESS TRUE
9-
GIT_SHALLOW TRUE
109
)
1110
atta_log(Info Extern "Fetching ImGuizmo...")
1211
FetchContent_MakeAvailable(imguizmo)

src/extern/solveImplot.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ set(IMPLOT_SOURCE
2020
add_library(implot STATIC
2121
${IMPLOT_SOURCE}
2222
)
23-
target_include_directories(implot PUBLIC
23+
target_include_directories(implot PUBLIC
2424
$<BUILD_INTERFACE:${FETCHCONTENT_BASE_DIR}/implot-src>
2525
$<INSTALL_INTERFACE:include/${ATTA_VERSION_SAFE}/extern/implot>
2626
)

0 commit comments

Comments
 (0)