Skip to content

Commit

Permalink
Fix linux build (#1398)
Browse files Browse the repository at this point in the history
  • Loading branch information
Metgraph authored Dec 8, 2022
1 parent fcd7ae5 commit 1b68c14
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
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

0 comments on commit 1b68c14

Please sign in to comment.