mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
14 lines
227 B
CMake
14 lines
227 B
CMake
cmake_minimum_required (VERSION 3.10.0)
|
|
project (naett)
|
|
|
|
set(SRC_DIR ../naett)
|
|
|
|
set(ALL_SOURCE_FILES
|
|
${SRC_DIR}/naett.c
|
|
)
|
|
|
|
add_library(naett STATIC ${ALL_SOURCE_FILES})
|
|
if(WIN32)
|
|
target_link_libraries(naett winhttp)
|
|
endif()
|