mirror of
https://github.com/Akagi201/lw_oopc.git
synced 2025-01-30 23:52:53 +08:00
8 lines
236 B
CMake
8 lines
236 B
CMake
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
|
|
cmake_minimum_required(VERSION 3.0)
|
|
project(demo)
|
|
add_compile_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
add_subdirectory(Animal)
|
|
add_subdirectory(Expr)
|
|
add_subdirectory(expr-advance)
|