Use a shorter/simpler license convention, stops the header taking so much space. Follow the SPDX license specification: https://spdx.org/licenses - C/C++/objc/objc++ - Python - Shell Scripts - CMake, GNUmakefile While most of the source tree has been included - `./extern/` was left out. - `./intern/cycles` & `./intern/atomic` are also excluded because they use different header conventions. doc/license/SPDX-license-identifiers.txt has been added to list SPDX all used identifiers. See P2788 for the script that automated these edits. Reviewed By: brecht, mont29, sergey Ref D14069
51 lines
1.1 KiB
CMake
51 lines
1.1 KiB
CMake
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Build datatoc executable
|
|
set(SRC
|
|
datatoc.c
|
|
)
|
|
|
|
# SRC_DNA_INC is defined in the parent dir
|
|
add_executable(datatoc ${SRC})
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Build datatoc_icon executable
|
|
|
|
if(NOT WITH_HEADLESS)
|
|
|
|
set(SRC
|
|
datatoc_icon.c
|
|
)
|
|
setup_platform_linker_flags(datatoc)
|
|
if(WIN32)
|
|
include_directories(
|
|
../blenlib
|
|
../../../intern/utfconv
|
|
)
|
|
|
|
# for winstuff_dir.c
|
|
add_definitions(-DUSE_STANDALONE)
|
|
|
|
list(APPEND SRC
|
|
../blenlib/intern/winstuff_dir.c
|
|
../../../intern/utfconv/utfconv.c
|
|
)
|
|
|
|
endif()
|
|
|
|
include_directories(${PNG_INCLUDE_DIRS})
|
|
|
|
add_executable(datatoc_icon ${SRC})
|
|
setup_platform_linker_flags(datatoc_icon)
|
|
|
|
target_link_libraries(datatoc_icon ${PNG_LIBRARIES} ${ZLIB_LIBRARIES})
|
|
# PNG library uses pow() and floow(), so seems -lm is required for proper
|
|
# working binary.
|
|
if(UNIX AND NOT APPLE)
|
|
target_link_libraries(datatoc_icon m)
|
|
endif()
|
|
endif()
|