mirror of
https://github.com/stacksmashing/LPCClocklessAnalyzer.git
synced 2026-01-30 19:08:38 +03:00
replaced the build system with cmake, and removed the old submodules.
updated the readme updated the rename script
This commit is contained in:
26
CMakeLists.txt
Normal file
26
CMakeLists.txt
Normal file
@@ -0,0 +1,26 @@
|
||||
cmake_minimum_required (VERSION 3.13)
|
||||
|
||||
project(SimpleSerialAnalyzer)
|
||||
|
||||
add_definitions( -DLOGIC2 )
|
||||
|
||||
# enable generation of compile_commands.json, helpful for IDEs to locate include files.
|
||||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
||||
# custom CMake Modules are located in the cmake directory.
|
||||
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
|
||||
|
||||
include(ExternalAnalyzerSDK)
|
||||
|
||||
set(SOURCES
|
||||
src/SimpleSerialAnalyzer.cpp
|
||||
src/SimpleSerialAnalyzer.h
|
||||
src/SimpleSerialAnalyzerResults.cpp
|
||||
src/SimpleSerialAnalyzerResults.h
|
||||
src/SimpleSerialAnalyzerSettings.cpp
|
||||
src/SimpleSerialAnalyzerSettings.h
|
||||
src/SimpleSerialSimulationDataGenerator.cpp
|
||||
src/SimpleSerialSimulationDataGenerator.h
|
||||
)
|
||||
|
||||
add_analyzer_plugin(${PROJECT_NAME} SOURCES ${SOURCES})
|
||||
Reference in New Issue
Block a user