Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix linux build #1398

Merged
merged 3 commits into from
Dec 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exts/embree/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if(MSVC)
endif(MSVC)
if(UNIX AND NOT APPLE)
target_include_directories(embree INTERFACE /usr/local/include)
set_target_properties(embree PROPERTY
set_target_properties(embree PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES "CXX"
IMPORTED_LOCATION "/usr/local/lib/libembree3.so"
INTERFACE_INCLUDE_DIRECTORIES "/usr/local/include")
Expand Down
2 changes: 1 addition & 1 deletion exts/openimagedenoise/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if(MSVC)
endif(MSVC)
if(UNIX AND NOT APPLE)
target_include_directories(openimagedenoise INTERFACE /usr/local/include)
set_target_properties(openimagedenoise PROPERTY
set_target_properties(openimagedenoise PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES "CXX"
IMPORTED_LOCATION "/usr/local/lib/libOpenImageDenoise.so"
INTERFACE_INCLUDE_DIRECTORIES "/usr/local/include")
Expand Down
1 change: 1 addition & 0 deletions libs/yocto/yocto_sceneio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
#include <memory>
#include <nlohmann/json.hpp>
#include <stdexcept>
#include <thread>
#include <unordered_map>

#include "yocto_color.h"
Expand Down