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.
12 lines
294 B
CMake
12 lines
294 B
CMake
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.cpp)
|
|
|
|
set_target_properties(dummy PROPERTIES LINKER_LANGUAGE CXX)
|