Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

c++ - How Can I read a file at preprocessing time

I need to compile my code based on version number of the project i am working on. In short, i will read the version number from a file and enable or disable certain part of my code/.
How can i read the version number from a file at compile time in c/c++?.

I am trying to do something like this

static const unsigned int version =   
#include "version"
    ;

I am getting compiler error.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

file.c

#include <stdio.h>
static const float version = 
#include "file.h"
;

int main()
{
 printf("Version is : %f
", version);
}

file.h

37.11

basically works


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...