File tree Expand file tree Collapse file tree 4 files changed +4
-8
lines changed Expand file tree Collapse file tree 4 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ before_build:
58
58
- cmd : cd envs
59
59
- cmd : python -m virtualenv conan
60
60
- cmd : conan/Scripts/activate
61
- - cmd : python -m pip install conan==1.11.2
61
+ - cmd : python -m pip install conan==1.11.2 # TODO: Update to latest version (needs python 3)
62
62
- cmd : cd ..
63
63
- cmd : conan --version
64
64
- cmd : conan remote add conan-bincrafters https://api.bintray.com/conan/bincrafters/public-conan
Original file line number Diff line number Diff line change 22
22
fi
23
23
24
24
python --version
25
- pip install conan==1.11.2
25
+ pip install conan==1.17.0
26
26
pip install codecov
27
27
conan --version
28
28
conan config set storage.path=~ /conanData
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class Exiv2Conan(ConanFile):
17
17
)
18
18
19
19
def configure (self ):
20
- self .options ['libcurl' ].shared = True
20
+ self .options ['libcurl' ].shared = False
21
21
self .options ['libcurl' ].with_openssl = True
22
22
self .options ['gtest' ].shared = True
23
23
@@ -34,7 +34,7 @@ def requirements(self):
34
34
self .requires ('gtest/1.8.1@bincrafters/stable' )
35
35
36
36
if self .options .webready and not os_info .is_macos :
37
- self .requires ('libcurl/7.61 .1@bincrafters/stable' )
37
+ self .requires ('libcurl/7.64 .1@bincrafters/stable' )
38
38
39
39
if self .options .xmp :
40
40
self .requires ('XmpSdk/2016.7@piponazo/stable' ) # from conan-piponazo
Original file line number Diff line number Diff line change @@ -197,10 +197,6 @@ if (WIN32)
197
197
endif ()
198
198
199
199
if (NOT MSVC )
200
- if ( UNIX AND NOT CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" )
201
- target_link_libraries ( exiv2lib PRIVATE ${CMAKE_DL_LIBS} ) # -ldl = dynamic loader used by src/version.cpp
202
- endif ()
203
-
204
200
if ( CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" )
205
201
target_link_libraries ( exiv2lib PRIVATE -lprocstat)
206
202
endif ()
You can’t perform that action at this time.
0 commit comments