mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
12 lines
217 B
CMake
12 lines
217 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(sharedCommandParser)
|
|
|
|
if(WIN32)
|
|
add_definitions(/D_CRT_SECURE_NO_WARNINGS)
|
|
endif()
|
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include/public)
|
|
|
|
add_subdirectory(src)
|