mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-19 09:24:46 +08:00
11 lines
167 B
CMake
11 lines
167 B
CMake
cmake_minimum_required(VERSION 3.27)
|
|
project(cpp)
|
|
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
|
|
include_directories(.)
|
|
|
|
add_executable(cpp
|
|
HelloWorld.cpp
|
|
HelloWorld.h)
|