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

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...