Warning, /frameworks/kapidox/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 cmake_minimum_required(VERSION 3.16)
0002 project(KApiDox NONE)
0003
0004 set(KF_VERSION "5.100.0") # handled by release scripts
0005
0006 if(DO_BOOTSTRAP)
0007 include(FindUnixCommands)
0008
0009 if(WIN32)
0010 # Needs native path and extra escaping of spaces
0011 file(TO_NATIVE_PATH "${CMAKE_BINARY_DIR}" BINARY_DIR)
0012 else()
0013 set(BINARY_DIR ${CMAKE_BINARY_DIR})
0014 endif()
0015
0016 add_custom_target(build ALL
0017 COMMAND ${BASH} bootstrap-devenv.sh
0018 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
0019 )
0020 endif()
0021
0022 # A dummy install part to fulfill needs of kdesrc-build and possible make installs
0023 install(RUNTIME_DEPENDENCY_SET kapidox OPTIONAL)