Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elemecca/cmake-ida
Build IDA Pro modules with CMake
https://github.com/elemecca/cmake-ida
cmake cmake-module ida ida-plugin ida-pro
Last synced: 3 months ago
JSON representation
Build IDA Pro modules with CMake
- Host: GitHub
- URL: https://github.com/elemecca/cmake-ida
- Owner: Elemecca
- License: other
- Archived: true
- Created: 2017-12-16T17:57:47.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-02T03:26:29.000Z (almost 7 years ago)
- Last Synced: 2024-05-27T12:01:48.456Z (6 months ago)
- Topics: cmake, cmake-module, ida, ida-plugin, ida-pro
- Language: CMake
- Size: 4.88 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING.txt
Awesome Lists containing this project
README
# CMake for the IDA Pro SDK
This project provides CMake support for building IDA Pro modules.
## Usage
First, you need to somehow get a copy of this project as a subdirectory
of your project named `external/cmake-microchip`. If you use git, the
easiest way is to add a submodule:git submodule add git://github.com/Elemecca/cmake-ida.git external/cmake-ida
Then add this snippet near the top of your `CMakeLists.txt` (after the
`project` command, but before any targets):list(APPEND CMAKE_MODULE_PATH external/cmake-ida)
find_package(IDA 7.0 REQUIRED)## Copying
Copyright 2017 Sam Hanes.
This project is provided under the same BSD 3-Clause license as CMake
itself. See `COPYING.txt` for details.