You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by ab...@apache.org on 2011/01/07 16:26:42 UTC

svn commit: r1056348 - in /incubator/celix/trunk/framework: ./ CMakeLists.txt private/ private/include/ private/src/ private/test/ public/ public/include/

Author: abroekhuis
Date: Fri Jan  7 15:26:42 2011
New Revision: 1056348

URL: http://svn.apache.org/viewvc?rev=1056348&view=rev
Log:
Updated directory structure for framework

Added:
    incubator/celix/trunk/framework/
    incubator/celix/trunk/framework/CMakeLists.txt   (with props)
    incubator/celix/trunk/framework/private/
    incubator/celix/trunk/framework/private/include/
    incubator/celix/trunk/framework/private/src/
    incubator/celix/trunk/framework/private/test/
    incubator/celix/trunk/framework/public/
    incubator/celix/trunk/framework/public/include/

Added: incubator/celix/trunk/framework/CMakeLists.txt
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/CMakeLists.txt?rev=1056348&view=auto
==============================================================================
--- incubator/celix/trunk/framework/CMakeLists.txt (added)
+++ incubator/celix/trunk/framework/CMakeLists.txt Fri Jan  7 15:26:42 2011
@@ -0,0 +1,27 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+# 
+#   http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+cmake_minimum_required(VERSION 2.8)
+
+add_definitions(-DUSE_FILE32API)
+aux_source_directory("private/src" SRC)
+
+include_directories("private/include")
+include_directories("public/include")
+add_library(framework SHARED ${SRC})
+target_link_libraries(framework z)
+
+install(TARGETS framework LIBRARY DESTINATION lib COMPONENT framework)

Propchange: incubator/celix/trunk/framework/CMakeLists.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain