Files
opm-common/opm/parser/eclipse/python/tests/deck/CMakeLists.txt
Joakim Hove 3a426cb4c9 Added simple python wrapper for Parser and Deck.
- Create a new shared library libcopmparser with small files cxxxx
   which wrap general Cxx classes with C linkage.

 - Added Python packages & modules, based on Python ctypes and the
   ert.cwrap package.
2016-01-15 16:35:09 +01:00

14 lines
541 B
CMake

set (TEST_SOURCES
__init__.py
test_deck.py
test_deck_keyword.py
test_deck_record.py
test_deck_item.py )
add_python_package("python.tests.deck" "${PYTHON_INSTALL_PREFIX}/tests/deck" "${TEST_SOURCES}" False)
addPythontest( python.test_deck tests.deck.test_deck.DeckTest )
addPythontest( python.test_deck_keyword tests.deck.test_deck_keyword.DeckKeywordTest )
addPythontest( python.test_deck_record tests.deck.test_deck_record.DeckRecordTest )
addPythontest( python.test_deck_item tests.deck.test_deck_item.DeckItemTest )