mirror of
https://gitee.com/TarsCloud/TarsCpp.git
synced 2024-12-22 22:16:38 +08:00
15 lines
183 B
CMake
15 lines
183 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
project(util)
|
|
|
|
if(WIN32)
|
|
enable_language(ASM_MASM)
|
|
else()
|
|
enable_language(ASM)
|
|
endif()
|
|
|
|
|
|
add_subdirectory(src)
|
|
add_subdirectory(include)
|
|
|
|
|