Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Tests/CMakeCommands/target_link_libraries/subdir/subdirlib.h
3157 views
1
2
#ifndef SUBDIRLIB_H
3
#define SUBDIRLIB_H
4
5
#include "subdirlib_export.h"
6
7
struct SUBDIRLIB_EXPORT SubDirLibObject
8
{
9
int foo() const;
10
};
11
12
#endif
13
14