Skip to content

Instantly share code, notes, and snippets.

@gabikat
Created August 4, 2021 22:21
Show Gist options
  • Save gabikat/9fbaf09ead9f8853355895a3cdefab91 to your computer and use it in GitHub Desktop.
Save gabikat/9fbaf09ead9f8853355895a3cdefab91 to your computer and use it in GitHub Desktop.
Example of CMakeLists.txt file for remote development (using specified directory for C++ header files)
cmake_minimum_required(VERSION 3.10)
project(productmatch)
set(CMAKE_CXX_STANDARD 14)
set(HF /usr/local/gcc-5.3.0/include)
set (CMAKE_CXX_FLAGS "-pthread")
include_directories(${HF})
add_executable(productmatch main.cpp productfinder.cpp productfinder.h utils.h)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment