-
Notifications
You must be signed in to change notification settings - Fork 288
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmake scripts currently broken? #33
Comments
I believe the only change in the cmake files were adding GNUIntsallDirs support by @heirecka but I thought that the changes were backwards compatible. That said, I have no problem bumping the minimal version if that solves the issue. Should we just do that? |
After having a second look, it's clear to me that bumping the version number won't just do it. (I was looking at the wrong file, and was confused by the error message). Adding the missing |
From the warning I and the path of the error message I assume you're not in the root dir of the repo. Also the root CMakeLists.txt has "cmake_minimum_required(VERSION 2.8.12)" which is enough to contain GNUInstallDirs (introduced with 2.8.5). |
Using Here's the last message seen:
|
-DBUILD_SHARED_LIBS:BOOL=TRUE |
Doing a checkout at 0e47d5a in January works, however top of tree reports the following, and it is not possible to build with the current cmake scripts.
CMake Error at CMakeLists.txt:44 (install):
install TARGETS given no ARCHIVE DESTINATION for static library target
"double-conversion".
CMake Warning (dev) in CMakeLists.txt:
No cmake_minimum_required command is present. A line of code such as
should be added at the top of the file. The version specified may be lower
if you wish to support older CMake versions for this project. For more
information run "cmake --help-policy CMP0000".
This warning is for project developers. Use -Wno-dev to suppress it.
-- Configuring incomplete, errors occurred!
The text was updated successfully, but these errors were encountered: