Logo

GitLab

Sign in

SGJP / Morfeusz

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Morfeusz
  • morfeusz
  • wrappers
  • CMakeLists.txt
  • bugfix: regex recognizing Python version ...
    76b5d85b
    the funniest bug so far: Python 3.12 is a 2.x version, because it
    contains a ‘2’ 🤣
    Marcin Woliński authored
    2025-05-30 18:25:59 +0200  
    Browse Dir »
CMakeLists.txt 198 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10
add_subdirectory (java)
#add_subdirectory (perl)

if (${PY})
	if("${PY}" MATCHES "^2\\.")
		add_subdirectory (python2)
	elseif("${PY}" MATCHES "^3\\.")
		add_subdirectory (python3)
	endif()
endif()