You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
438 B
24 lines
438 B
/* |
|
* Xournal++ |
|
* |
|
* Test module constants |
|
* |
|
* @author Xournal++ Team |
|
* https://github.com/xournalpp/xournalpp |
|
* |
|
* @license GNU GPLv2 or later |
|
*/ |
|
|
|
#pragma once |
|
|
|
/** |
|
* Project source directory (needed for loading testfiles) |
|
*/ |
|
#cmakedefine PROJECT_SOURCE_DIR "@PROJECT_SOURCE_DIR@" |
|
|
|
#define GET_TESTFILE(relative) PROJECT_SOURCE_DIR "/test/files/" relative |
|
|
|
/** |
|
* Show speed benchmarks of tests |
|
*/ |
|
#cmakedefine TEST_CHECK_SPEED
|
|
|