fscanary/CMakeLists.txt

24 lines
400 B
CMake

cmake_minimum_required(VERSION 3.7)
project(fscanary)
set(CMAKE_CXX_STANDARD 14)
add_subdirectory(
lib/efsw
)
include_directories(
${CMAKE_SOURCE_DIR}/include
${CMAKE_SOURCE_DIR}/lib
${CMAKE_SOURCE_DIR}/lib/efsw/include
)
set(SOURCE_FILES main.cpp)
add_executable(fscanary ${SOURCE_FILES})
set( LIBS
efsw
)
target_link_libraries(${PROJECT_NAME} ${LIBS})