~ubuntu-branches/ubuntu/raring/cmake/raring

« back to all changes in this revision

Viewing changes to Tests/ComplexRelativePaths/Library/testConly.h

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2012-04-30 12:14:32 UTC
  • mfrom: (3.1.30 sid)
  • Revision ID: package-import@ubuntu.com-20120430121432-rqh2fjl3zcblehh5
Tags: 2.8.8-2ubuntu1
* Merge from Debian unstable, remaining changes:
  - Add xfail_compiler_flag.diff: Mark compiler flag tests as expected
    failures.
  - Add ubuntu_qt_import_dir_variable.diff: define QT_IMPORTS_DIR even
    when that dir does not exist.
* Remove increase_ctest_test_timeout.diff, merged upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#if defined(_WIN32) || defined(WIN32) /* Win32 version */
2
 
#ifdef CMakeTestCLibraryShared_EXPORTS
3
 
#  define CMakeTest_EXPORT __declspec(dllexport)
4
 
#else
5
 
#  define CMakeTest_EXPORT __declspec(dllimport)
6
 
#endif
7
 
#else
8
 
/* unix needs nothing */
9
 
#define CMakeTest_EXPORT
10
 
#endif
11
 
 
12
 
CMakeTest_EXPORT int CsharedFunction();
13