mirror of https://github.com/Gnucash/gnucash
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.
21 lines
602 B
21 lines
602 B
|
|
|
|
set(libgncmod_test_engine_SOURCES
|
|
gncmod-test-engine.c test-engine-stuff.cpp
|
|
)
|
|
|
|
add_library(gncmod-test-engine STATIC ${libgncmod_test_engine_SOURCES})
|
|
|
|
target_include_directories(gncmod-test-engine PRIVATE
|
|
${CMAKE_PREFIX_PATH}/include
|
|
${GMODULE_INCLUDE_DIRS}
|
|
${CMAKE_SOURCE_DIR}/libgnucash/gnc-module
|
|
${CMAKE_BINARY_DIR}/common # for config.h
|
|
${CMAKE_SOURCE_DIR}/common
|
|
${CMAKE_SOURCE_DIR}/libgnucash/engine
|
|
${CMAKE_SOURCE_DIR}/common/test-core
|
|
)
|
|
|
|
set_dist_list(engine_test_core_DIST CMakeLists.txt ${libgncmod_test_engine_SOURCES}
|
|
test-engine-stuff.h test-engine-strings.h)
|