This repository has been archived by the owner on Jul 18, 2020. It is now read-only.
forked from Wyk3d/YafaRay
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'v3.0' into experimental
- Loading branch information
Showing
238 changed files
with
8,259 additions
and
3,903 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
# WARNING: Please don't change this file | ||
if(NOT YAF_REVISION) | ||
set(YAF_REVISION "None") | ||
endif(NOT YAF_REVISION) | ||
if(NOT YAFARAY_CORE_VERSION) | ||
set(YAFARAY_CORE_VERSION "(devel)") | ||
endif(NOT YAFARAY_CORE_VERSION) | ||
|
||
if(DEBUG_BUILD STREQUAL "ON") | ||
set(DEBUG "-DEBUG") | ||
endif(DEBUG_BUILD STREQUAL "ON") | ||
|
||
include(CheckIncludeFiles) | ||
check_include_files(unistd.h HAVE_UNISTD_H) | ||
configure_file(CMakeConfig/templates/yafray_config.h.cmake ${CMAKE_BINARY_DIR}/yafray_config.h) | ||
configure_file(CMakeConfig/templates/yaf_revision.h.cmake ${CMAKE_BINARY_DIR}/yaf_revision.h) | ||
configure_file(CMakeConfig/templates/yaf_version.h.cmake ${CMAKE_BINARY_DIR}/yaf_version.h) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Header file generated by CMake please don't change it | ||
|
||
// This preprocessor macro is set by cmake during building in file yaf_version.h.cmake | ||
// For example: cmake -DYAFARAY_CORE_VERSION="v1.2.3" | ||
// the intention is to link the YafaRay Core version to the git information obtained, for example with: | ||
// cmake /yafaray/src/Core -DYAFARAY_CORE_VERSION=`git --git-dir=/yafaray/src/Core/.git --work-tree=/yafaray/src/Core describe --dirty --always --tags --long` | ||
|
||
#ifndef Y_VERSION_H | ||
#define Y_VERSION_H | ||
#define YAFARAY_CORE_VERSION "@YAFARAY_CORE_VERSION@@DEBUG@" | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.