mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Update CMakefile.txt for c->c++ change in backends.
This commit is contained in:
parent
0e7c7c3b42
commit
3b28d5ce5e
@ -17,7 +17,7 @@ INCLUDE_DIRECTORIES (${CMAKE_SOURCE_DIR}/src/app-utils)
|
|||||||
INCLUDE_DIRECTORIES (${CMAKE_SOURCE_DIR}/src/backend/sql)
|
INCLUDE_DIRECTORIES (${CMAKE_SOURCE_DIR}/src/backend/sql)
|
||||||
|
|
||||||
SET (libgnc_backend_dbi_SOURCES
|
SET (libgnc_backend_dbi_SOURCES
|
||||||
gnc-backend-dbi.c
|
gnc-backend-dbi.cpp
|
||||||
)
|
)
|
||||||
SET (libgnc_backend_dbi_HEADERS
|
SET (libgnc_backend_dbi_HEADERS
|
||||||
gnc-backend-dbi.h
|
gnc-backend-dbi.h
|
||||||
|
@ -16,29 +16,29 @@ INCLUDE_DIRECTORIES (${CMAKE_SOURCE_DIR}/src/gnc-module)
|
|||||||
INCLUDE_DIRECTORIES (${CMAKE_SOURCE_DIR}/src/engine)
|
INCLUDE_DIRECTORIES (${CMAKE_SOURCE_DIR}/src/engine)
|
||||||
|
|
||||||
SET (libgnc_backend_sql_SOURCES
|
SET (libgnc_backend_sql_SOURCES
|
||||||
gnc-backend-sql.c
|
gnc-backend-sql.cpp
|
||||||
gnc-account-sql.c
|
gnc-account-sql.cpp
|
||||||
gnc-address-sql.c
|
gnc-address-sql.cpp
|
||||||
gnc-bill-term-sql.c
|
gnc-bill-term-sql.cpp
|
||||||
gnc-book-sql.c
|
gnc-book-sql.cpp
|
||||||
gnc-budget-sql.c
|
gnc-budget-sql.cpp
|
||||||
gnc-commodity-sql.c
|
gnc-commodity-sql.cpp
|
||||||
gnc-customer-sql.c
|
gnc-customer-sql.cpp
|
||||||
gnc-employee-sql.c
|
gnc-employee-sql.cpp
|
||||||
gnc-entry-sql.c
|
gnc-entry-sql.cpp
|
||||||
gnc-invoice-sql.c
|
gnc-invoice-sql.cpp
|
||||||
gnc-job-sql.c
|
gnc-job-sql.cpp
|
||||||
gnc-lots-sql.c
|
gnc-lots-sql.cpp
|
||||||
gnc-order-sql.c
|
gnc-order-sql.cpp
|
||||||
gnc-owner-sql.c
|
gnc-owner-sql.cpp
|
||||||
gnc-price-sql.c
|
gnc-price-sql.cpp
|
||||||
gnc-recurrence-sql.c
|
gnc-recurrence-sql.cpp
|
||||||
gnc-schedxaction-sql.c
|
gnc-schedxaction-sql.cpp
|
||||||
gnc-slots-sql.cpp
|
gnc-slots-sql.cpp
|
||||||
gnc-tax-table-sql.c
|
gnc-tax-table-sql.cpp
|
||||||
gnc-transaction-sql.c
|
gnc-transaction-sql.cpp
|
||||||
gnc-vendor-sql.c
|
gnc-vendor-sql.cpp
|
||||||
escape.c
|
escape.cpp
|
||||||
)
|
)
|
||||||
SET (libgnc_backend_sql_HEADERS
|
SET (libgnc_backend_sql_HEADERS
|
||||||
gnc-account-sql.h
|
gnc-account-sql.h
|
||||||
|
@ -15,47 +15,47 @@ INCLUDE_DIRECTORIES (${CMAKE_SOURCE_DIR}/src/libqof/qof)
|
|||||||
INCLUDE_DIRECTORIES (${CMAKE_SOURCE_DIR}/src/core-utils)
|
INCLUDE_DIRECTORIES (${CMAKE_SOURCE_DIR}/src/core-utils)
|
||||||
INCLUDE_DIRECTORIES (${CMAKE_SOURCE_DIR}/src/gnc-module)
|
INCLUDE_DIRECTORIES (${CMAKE_SOURCE_DIR}/src/gnc-module)
|
||||||
INCLUDE_DIRECTORIES (${CMAKE_SOURCE_DIR}/src/engine)
|
INCLUDE_DIRECTORIES (${CMAKE_SOURCE_DIR}/src/engine)
|
||||||
INCLUDE_DIRECTORIES (${CMAKE_CURRENT_SOURCE_DIR}) # when building swig-gnc-module.c
|
INCLUDE_DIRECTORIES (${CMAKE_CURRENT_SOURCE_DIR}) # when building swig-gnc-module.cpp
|
||||||
|
|
||||||
# Command to generate the swig-engine.c wrapper file
|
# Command to generate the swig-engine.cpp wrapper file
|
||||||
SET (SWIG_GNC_MODULE_C ${CMAKE_CURRENT_BINARY_DIR}/swig-gnc-module.c)
|
SET (SWIG_GNC_MODULE_C ${CMAKE_CURRENT_BINARY_DIR}/swig-gnc-module.cpp)
|
||||||
GNC_ADD_SWIG_COMMAND (${SWIG_GNC_MODULE_C} ${CMAKE_CURRENT_SOURCE_DIR}/gnc-module.i)
|
GNC_ADD_SWIG_COMMAND (${SWIG_GNC_MODULE_C} ${CMAKE_CURRENT_SOURCE_DIR}/gnc-module.i)
|
||||||
|
|
||||||
SET (libgnc_backend_xml_SOURCES
|
SET (libgnc_backend_xml_SOURCES
|
||||||
gnc-account-xml-v2.c
|
gnc-account-xml-v2.cpp
|
||||||
gnc-address-xml-v2.c
|
gnc-address-xml-v2.cpp
|
||||||
gnc-bill-term-xml-v2.c
|
gnc-bill-term-xml-v2.cpp
|
||||||
gnc-book-xml-v2.c
|
gnc-book-xml-v2.cpp
|
||||||
gnc-budget-xml-v2.c
|
gnc-budget-xml-v2.cpp
|
||||||
gnc-commodity-xml-v2.c
|
gnc-commodity-xml-v2.cpp
|
||||||
gnc-customer-xml-v2.c
|
gnc-customer-xml-v2.cpp
|
||||||
gnc-employee-xml-v2.c
|
gnc-employee-xml-v2.cpp
|
||||||
gnc-entry-xml-v2.c
|
gnc-entry-xml-v2.cpp
|
||||||
gnc-freqspec-xml-v2.c
|
gnc-freqspec-xml-v2.cpp
|
||||||
gnc-invoice-xml-v2.c
|
gnc-invoice-xml-v2.cpp
|
||||||
gnc-job-xml-v2.c
|
gnc-job-xml-v2.cpp
|
||||||
gnc-lot-xml-v2.c
|
gnc-lot-xml-v2.cpp
|
||||||
gnc-order-xml-v2.c
|
gnc-order-xml-v2.cpp
|
||||||
gnc-owner-xml-v2.c
|
gnc-owner-xml-v2.cpp
|
||||||
gnc-pricedb-xml-v2.c
|
gnc-pricedb-xml-v2.cpp
|
||||||
gnc-recurrence-xml-v2.c
|
gnc-recurrence-xml-v2.cpp
|
||||||
gnc-schedxaction-xml-v2.c
|
gnc-schedxaction-xml-v2.cpp
|
||||||
gnc-tax-table-xml-v2.c
|
gnc-tax-table-xml-v2.cpp
|
||||||
gnc-transaction-xml-v2.c
|
gnc-transaction-xml-v2.cpp
|
||||||
gnc-vendor-xml-v2.c
|
gnc-vendor-xml-v2.cpp
|
||||||
gnc-xml-helper.c
|
gnc-xml-helper.cpp
|
||||||
io-example-account.c
|
io-example-account.cpp
|
||||||
io-gncxml-gen.c
|
io-gncxml-gen.cpp
|
||||||
io-gncxml-v1.cpp
|
io-gncxml-v1.cpp
|
||||||
io-gncxml-v2.c
|
io-gncxml-v2.cpp
|
||||||
io-utils.c
|
io-utils.cpp
|
||||||
sixtp-dom-generators.cpp
|
sixtp-dom-generators.cpp
|
||||||
sixtp-dom-parsers.cpp
|
sixtp-dom-parsers.cpp
|
||||||
sixtp-stack.c
|
sixtp-stack.cpp
|
||||||
sixtp-to-dom-parser.c
|
sixtp-to-dom-parser.cpp
|
||||||
sixtp-utils.c
|
sixtp-utils.cpp
|
||||||
sixtp.c
|
sixtp.cpp
|
||||||
gnc-backend-xml.c
|
gnc-backend-xml.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
# Add dependency on config.h
|
# Add dependency on config.h
|
||||||
|
Loading…
Reference in New Issue
Block a user