mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-04 16:26:46 +00:00
8ecb7bbe2b
We were using the LLDB-Info.plist as the canonical holder of the version number, but there is really no good reason to do this. If anything the plist should be generated using the information provided to CMake. For now just remove the logic extracting the version from the plist and rely on LLDB_VERSION_STRING. llvm-svn: 358604
67 lines
1.8 KiB
CMake
67 lines
1.8 KiB
CMake
include_directories(.)
|
|
|
|
set(lldbBase_SOURCES
|
|
lldb.cpp
|
|
)
|
|
|
|
foreach(file
|
|
"${LLDB_SOURCE_DIR}/.git/logs/HEAD" # Git
|
|
"${LLDB_SOURCE_DIR}/.svn/wc.db" # SVN 1.7
|
|
"${LLDB_SOURCE_DIR}/.svn/entries" # SVN 1.6
|
|
)
|
|
if(EXISTS "${file}")
|
|
set(lldb_vc "${file}")
|
|
break()
|
|
endif()
|
|
endforeach()
|
|
|
|
set(version_inc "${CMAKE_CURRENT_BINARY_DIR}/VCSVersion.inc")
|
|
set(generate_vcs_version_script "${LLVM_CMAKE_PATH}/GenerateVersionFromVCS.cmake")
|
|
|
|
if(lldb_vc)
|
|
set(lldb_source_dir ${LLDB_SOURCE_DIR})
|
|
endif()
|
|
|
|
add_custom_command(OUTPUT "${version_inc}"
|
|
DEPENDS "${lldb_vc}" "${generate_vcs_version_script}"
|
|
COMMAND ${CMAKE_COMMAND} "-DNAMES=LLDB"
|
|
"-DLLDB_SOURCE_DIR=${LLDB_SOURCE_DIR}"
|
|
"-DHEADER_FILE=${version_inc}"
|
|
-P "${generate_vcs_version_script}")
|
|
|
|
# Mark the generated header as being generated.
|
|
set_source_files_properties("${version_inc}"
|
|
PROPERTIES GENERATED TRUE
|
|
HEADER_FILE_ONLY TRUE)
|
|
|
|
set_property(SOURCE lldb.cpp APPEND PROPERTY
|
|
COMPILE_DEFINITIONS "HAVE_VCS_VERSION_INC")
|
|
|
|
list(APPEND lldbBase_SOURCES ${version_inc})
|
|
|
|
if(LLDB_VERSION_STRING)
|
|
set_property(SOURCE lldb.cpp APPEND PROPERTY
|
|
COMPILE_DEFINITIONS "LLDB_VERSION_STRING=${LLDB_VERSION_STRING}")
|
|
endif()
|
|
|
|
add_lldb_library(lldbBase
|
|
${lldbBase_SOURCES}
|
|
)
|
|
|
|
add_subdirectory(Breakpoint)
|
|
add_subdirectory(Commands)
|
|
add_subdirectory(Core)
|
|
add_subdirectory(DataFormatters)
|
|
add_subdirectory(Expression)
|
|
add_subdirectory(Host)
|
|
add_subdirectory(Initialization)
|
|
add_subdirectory(Interpreter)
|
|
add_subdirectory(Plugins)
|
|
add_subdirectory(Symbol)
|
|
add_subdirectory(Target)
|
|
add_subdirectory(Utility)
|
|
|
|
# Build API last. Since liblldb needs to link against every other target, it needs
|
|
# those targets to have already been created.
|
|
add_subdirectory(API)
|