Skip to content

Commit

Permalink
fixed paths in Alembic's CMakeLists.txt file.
Browse files Browse the repository at this point in the history
  • Loading branch information
dictoon committed Feb 13, 2014
1 parent 1d503f4 commit d5b9cdd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions 3rdparty/alembic/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ project (alembic)
# This must come after project () otherwise CMAKE_SYSTEM_NAME is undefined.
if (CMAKE_SYSTEM_NAME STREQUAL "Windows")
set (WINDOWS TRUE)
include (../cmake/config/win-vs110.txt)
include (../../src/cmake/config/win-vs110.txt)
elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin")
set (DARWIN TRUE)
include (../cmake/config/mac-gcc4.txt)
include (../../src/cmake/config/mac-gcc4.txt)
elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux")
set (LINUX TRUE)
include (../cmake/config/linux-gcc4.txt)
include (../../src/cmake/config/linux-gcc4.txt)
else ()
message (FATAL_ERROR "Unsupported platform or compiler (CMAKE_SYSTEM_NAME is \"${CMAKE_SYSTEM_NAME}\"). "
"Edit ${CMAKE_CURRENT_LIST_FILE} to add support for it.")
Expand Down

0 comments on commit d5b9cdd

Please sign in to comment.