This repository has been archived on 2023-08-11. You can view files and clone it, but cannot push or open issues or pull requests.
unitconverter/CMakeLists.txt

8 lines
186 B
CMake

cmake_minimum_required(VERSION 3.10)
project(unitconverter VERSION 1.0.0)
file(GLOB HEADERS "*.h")
file(GLOB SOURCES "*.cpp")
add_executable(${PROJECT_NAME} ${HEADERS} ${SOURCES})