mirror of
https://github.com/QuasarApp/LIEF.git
synced 2025-04-27 04:44:31 +00:00
15 lines
268 B
CMake
15 lines
268 B
CMake
cmake_minimum_required(VERSION 3.1)
|
|
include(ExternalProject)
|
|
|
|
# Python tests
|
|
# ============
|
|
if (PYTHON_TESTS_ENABLED)
|
|
|
|
# Unit tests
|
|
# ----------
|
|
ADD_PYTHON_TEST(UNITTEST_PYTHON_art
|
|
${PYTHON_EXECUTABLE}
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/art_test.py")
|
|
|
|
endif()
|