You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
cmake_minimum_required(VERSION 3.12)
|
|
project(RemoteAPIExample LANGUAGES CXX)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/src)
|
|
|
|
add_library(dummy STATIC src/ICounter.hpp)
|