We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 3.4中,flag.make 中除了 CXX_FLAGS 和 CXX_DEFINES, 还会有一个 CXX_INCLUDES 需要包含到 include path 中
举例来说 cmake 2.8 产生的 flag.make 如下 # CMAKE generated file: DO NOT EDIT!
CXX_FLAGS = -g -I/home/ruizhi/workspace/Odinson/include
CXX_DEFINES =
cmake 3.4 的 flag.make 为
CXX_FLAGS =
CXX_INCLUDES = -I/Users/ruizhi/workspace/Odinson/include
The text was updated successfully, but these errors were encountered:
Thanks for the head up.
Sorry, something went wrong.
switch to the working branch, download all the code, then run pkg.sh, M-x package-install-file to install cpputils-0.5.3.tar. Please test it.
pkg.sh
M-x package-install-file
No branches or pull requests
在cmake 3.4中,flag.make 中除了 CXX_FLAGS 和 CXX_DEFINES, 还会有一个 CXX_INCLUDES 需要包含到 include path 中
举例来说 cmake 2.8 产生的 flag.make 如下
# CMAKE generated file: DO NOT EDIT!
Generated by "Unix Makefiles" Generator, CMake Version 2.8
compile CXX with /usr/bin/c++
CXX_FLAGS = -g -I/home/ruizhi/workspace/Odinson/include
CXX_DEFINES =
cmake 3.4 的 flag.make 为
CMAKE generated file: DO NOT EDIT!
Generated by "Unix Makefiles" Generator, CMake Version 3.4
compile CXX with /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
CXX_FLAGS =
CXX_DEFINES =
CXX_INCLUDES = -I/Users/ruizhi/workspace/Odinson/include
The text was updated successfully, but these errors were encountered: