mirror of
https://github.com/status-im/macdylibbundler.git
synced 2025-02-19 14:24:12 +00:00
add CMakeLists.txt
This commit is contained in:
parent
577c3206d1
commit
5fa98c9fb8
22
CMakeLists.txt
Normal file
22
CMakeLists.txt
Normal file
@ -0,0 +1,22 @@
|
||||
cmake_minimum_required(VERSION 3.15)
|
||||
project(dylibbundler)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
if(NOT CMAKE_BUILD_TYPE)
|
||||
set(CMAKE_BUILD_TYPE RelWithDebInfo)
|
||||
endif()
|
||||
|
||||
include_directories(src)
|
||||
|
||||
add_executable(dylibbundler
|
||||
src/Dependency.cpp
|
||||
src/Dependency.h
|
||||
src/DylibBundler.cpp
|
||||
src/DylibBundler.h
|
||||
src/main.cpp
|
||||
src/Settings.cpp
|
||||
src/Settings.h
|
||||
src/Utils.cpp
|
||||
src/Utils.h
|
||||
)
|
Loading…
x
Reference in New Issue
Block a user