Created
January 14, 2020 20:05
-
-
Save marisancans/27ffbc80d8e5d73ff9b6126899bf15a2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.) git clone https://github.com/kodizhuk/Salae-Logic-NEC-Analyzer.git | |
2.) Created a CMakeLists.txt file: | |
project(IR_analyzer) | |
cmake_minimum_required(VERSION 3.12) | |
file(GLOB SOURCES | |
"source*.h" | |
"source/*.cpp" | |
) | |
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/AnalyzerSDK/include) | |
add_library(${PROJECT_NAME} SHARED ${SOURCES}) | |
3.) Compile with cmake | |
$ cmake build . | |
$ make | |
4.) Copy built libIR_analyzer.so file whare salae software is, to folder 'Analyzers' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment