mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-05-10 19:21:38 +00:00
10 lines
269 B
CMake
10 lines
269 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
|
|
include(CMakeParseArguments)
|
|
|
|
project("file_to_c")
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
add_executable(file_to_c "file_to_c.cpp")
|
|
|
|
target_link_libraries(file_to_c PRIVATE $<IF:$<TARGET_EXISTS:libzstd_static>,libzstd_static,libzstd_shared>)
|