An Internationalized Software Project With Auto Tools | ||
---|---|---|
Prev | A Simpe C Project | Next |
# mkdir testproj # cd testproj |
# mkdir src # touch src/main.cpp # touch src/testproj.h |
src/main.cpp |
#include <stdio.h> #include "testproj.h" int main(int) { printf(HELLO_WORLD); } |
src/testproj.h |
#define HELLO_WORLD "Hello world!\n" |
Prev | Home | Next |
Overview | Auto Tools Overview |