You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Software_Architecture/facelightcontrol/CMakeLists2.txt

14 lines
406 B

cmake_minimum_required(VERSION 2.14)
project(faceLightClient2)
set(CMAKE_CXX_FLAGS "$ENV{CXXFLAGS} -O3 -march=native -Wall")
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
include_directories(include)
link_directories(lib)
add_executable(faceLightClient2 main2.cpp)
target_link_libraries(faceLightClient2 libfaceLight_SDK_arm64.so)
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)