You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ remake -v
Built for x86_64-pc-linux-gnu
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
$ cmake --version
cmake version 3.5.1
CMake suite maintained and supported by Kitware (kitware.com/cmake)
$ lsb_release -a
Distributor ID: Ubuntu
Description: Ubuntu 16.04.1 LTS
Release: 16.04
Codename: xenial
The text was updated successfully, but these errors were encountered:
I have the same problem, I'm trying to compile and build a project that requires EXTRA_CXX_FLAGS "-std=c++11" but apparently remake constantly ignores the additional flags.
Right now I've bypassed the issue by adding the following line in CMakeList.txt before include(ReMake) :
ReMake
seems to ignore the configurationEXTRA_CXX_FLAGS
:Using the this example
CMakeLists.txt
file, ReMake seems to not setCMAKE_CXX_FLAGS
to the same value asEXTRA_CXX_FLAGS
:versions:
The text was updated successfully, but these errors were encountered: