5 lines
162 B
CMake
5 lines
162 B
CMake
# build the Python readline suppression module only on Linux
|
|
if (CMAKE_SYSTEM_NAME MATCHES "Linux" AND NOT __ANDROID_NDK__)
|
|
add_subdirectory(readline)
|
|
endif()
|