summaryrefslogtreecommitdiff
path: root/tests/projects/nim/link_library/inc/test.h
blob: f7d68cac813fcc4ccd5aae6763959a3f18b34342 (plain)
1
2
3
4
5
6
7
8
9
10
11

#ifndef TEST_H
#define TEST_H

#ifdef TEST_STATIC
    #define TEST_MSG "Hello from Static Lib!"
#else
    #define TEST_MSG "Hello from Shared Lib!"
#endif

#endif