From: José Fonseca Date: Fri, 25 Mar 2011 18:51:45 +0000 (+0000) Subject: Move Trace::Parser::version to .cpp to avoid duplicate symbols. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=4e370db9c69389ccf79c671294307403f36e914e;p=apitrace Move Trace::Parser::version to .cpp to avoid duplicate symbols. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 53d406e..598bc18 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -193,14 +193,17 @@ else () target_link_libraries (glxtrace dl) endif () -add_executable (dump dump.cpp trace_model.cpp) - if (WIN32) set (os os_win32.cpp) else (WIN32) set (os os_posix.cpp) endif (WIN32) +add_library (trace trace_model.cpp trace_parser.cpp ${os}) + +add_executable (dump dump.cpp) +target_link_libraries (dump trace) + if (GLUT_INCLUDE_DIR) add_custom_command ( OUTPUT glretrace.cpp @@ -214,9 +217,10 @@ if (GLUT_INCLUDE_DIR) ${GLUT_INCLUDE_DIR} ) - add_executable (glretrace glretrace.cpp trace_model.cpp image.cpp ${os} ${CMAKE_CURRENT_BINARY_DIR}/glproc.hpp) + add_executable (glretrace glretrace.cpp image.cpp ${CMAKE_CURRENT_BINARY_DIR}/glproc.hpp) target_link_libraries (glretrace + trace ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} ${GLUT_glut_LIBRARY} diff --git a/trace_parser.cpp b/trace_parser.cpp new file mode 100644 index 0000000..e3021e9 --- /dev/null +++ b/trace_parser.cpp @@ -0,0 +1,37 @@ +/************************************************************************** + * + * Copyright 2011 Jose Fonseca + * Copyright 2010 VMware, Inc. + * All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + **************************************************************************/ + + +#include "trace_parser.hpp" + + +namespace Trace { + + +unsigned long long Trace::Parser::version = 0; + + +} /* namespace Trace */ diff --git a/trace_parser.hpp b/trace_parser.hpp index f008fb9..edd9685 100644 --- a/trace_parser.hpp +++ b/trace_parser.hpp @@ -400,9 +400,6 @@ public: }; -unsigned long long Trace::Parser::version = 0; - - } /* namespace Trace */ #endif /* _TRACE_PARSER_HPP_ */