Skip to content

Commit

Permalink
attempt to fix outofcore windows linking issue
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.pointclouds.org/pcl/trunk@6915 a9d63959-f2ad-4865-b262-bf0e56cfafb6
  • Loading branch information
stevefox committed Aug 22, 2012
1 parent f7ac8fc commit 4f5299d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion outofcore/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ if(build)
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
PCL_ADD_LIBRARY(${LIB_NAME} ${SUBSYS_NAME} ${srcs} ${incs} ${impl_incs})
#PCL_ADD_SSE_FLAGS(${LIB_NAME})
target_link_libraries(${LIB_NAME} pcl_common)
target_link_libraries(${LIB_NAME} pcl_common ${Boost_SYSTEM_LIBRARY})
PCL_MAKE_PKGCONFIG(${LIB_NAME} ${SUBSYS_NAME} "${SUBSYS_DESC}" "${SUBSYS_DEPS}" "" "" "" "")

# Install include files
Expand Down
3 changes: 2 additions & 1 deletion outofcore/include/pcl/outofcore/outofcore_node_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
#ifndef PCL_OUTOFCORE_OCTREE_NODE_METADATA_H_
#define PCL_OUTOFCORE_OCTREE_NODE_METADATA_H_

#include <pcl/pcl_macros.h>
#include <pcl/outofcore/boost.h>
#include <pcl/outofcore/cJSON.h>

Expand Down Expand Up @@ -76,7 +77,7 @@ namespace pcl
* \ingroup outofcore
* \author Stephen Fox ([email protected])
*/
class OutofcoreOctreeNodeMetadata
class PCL_EXPORTS OutofcoreOctreeNodeMetadata
{
public:
/** \brief Empty constructor */
Expand Down
1 change: 0 additions & 1 deletion outofcore/tools/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ else(NOT VTK_FOUND)

set(incs )

# Doesn't compile as of 07/04
PCL_ADD_INCLUDES(pcl_outofcore_viewer ${SUBSYS_NAME} ${incs})
PCL_ADD_EXECUTABLE(pcl_outofcore_viewer ${SUBSYS_NAME} ${srcs})
target_link_libraries(pcl_outofcore_viewer pcl_common pcl_io pcl_outofcore pcl_visualization)
Expand Down

0 comments on commit 4f5299d

Please sign in to comment.