Skip to content

Instantly share code, notes, and snippets.

@marisancans
Created January 14, 2020 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marisancans/27ffbc80d8e5d73ff9b6126899bf15a2 to your computer and use it in GitHub Desktop.
Save marisancans/27ffbc80d8e5d73ff9b6126899bf15a2 to your computer and use it in GitHub Desktop.
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