Initial Commit
This commit is contained in:
17
CMakeLists.txt
Normal file
17
CMakeLists.txt
Normal file
@@ -0,0 +1,17 @@
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
project(stethoscope
|
||||
VERSION 1.0
|
||||
LANGUAGES C)
|
||||
|
||||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
|
||||
|
||||
if(NOT CMAKE_BUILD_TYPE)
|
||||
set(CMAKE_BUILD_TYPE "RelWithDebInfo")
|
||||
endif()
|
||||
|
||||
include_directories(${CMAKE_BINARY_DIR} ${PROJECT_SOURCE_DIR})
|
||||
|
||||
add_subdirectory(src)
|
||||
|
||||
#file(COPY resources DESTINATION ${CMAKE_BINARY_DIR})
|
||||
install(TARGETS ${PROJECT_NAME} RUNTIME DESTINATION bin)
|
||||
Reference in New Issue
Block a user