How can I include a header file without writing #include "header.h"
for example using cmakelists.txt?
For example without writing #define DEFINE
I defined it from cmakelists with the command add_definitions(-DDEFINE)
Can I do the similar thing?
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 166 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 160 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
How can I include a header file without writing #include "header.h"
for example using cmakelists.txt?
For example without writing #define DEFINE
I defined it from cmakelists with the command add_definitions(-DDEFINE)
Can I do the similar thing?
Name |
---|
Depends on the compiler. E.g. GCC has
-include header.h
key, see docs.You can use it in
CMakeLists.txt
viaadd_compile_options
, e.g.add_compile_options(-include header.h)
. Note that this will includeheader.h
in each translation unit ("source file") for all targets.This does not work for me. I tried both Cygwin and MinGW.
Make sure
add_compile_options
is specified beforeadd_executable
, like this.Alternatively, use
target_compile_options(main PRIVATE -include pre-main.inc.cpp)
afteradd_executable(main main.cpp)
.If I write it before
add_executable
it saysheader.h: No such file or directory
. My Cmake looks like this:"untitled1" is the project name.
So did you try to think why it says 'No such file or directory' if the file exists? Maybe it doesn't know where to find the file? Try specifying the absolute path.
Thank you purplesyringa, it helped. Also thanks to yeputons.
bump