Return-Path: Delivered-To: apmail-incubator-celix-commits-archive@minotaur.apache.org Received: (qmail 32583 invoked from network); 7 Jan 2011 15:27:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 7 Jan 2011 15:27:06 -0000 Received: (qmail 89438 invoked by uid 500); 7 Jan 2011 15:27:06 -0000 Delivered-To: apmail-incubator-celix-commits-archive@incubator.apache.org Received: (qmail 89419 invoked by uid 500); 7 Jan 2011 15:27:06 -0000 Mailing-List: contact celix-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: celix-dev@incubator.apache.org Delivered-To: mailing list celix-commits@incubator.apache.org Received: (qmail 89412 invoked by uid 99); 7 Jan 2011 15:27:05 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Jan 2011 15:27:05 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Jan 2011 15:27:03 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 90EB023889EB; Fri, 7 Jan 2011 15:26:42 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1056348 - in /incubator/celix/trunk/framework: ./ CMakeLists.txt private/ private/include/ private/src/ private/test/ public/ public/include/ Date: Fri, 07 Jan 2011 15:26:42 -0000 To: celix-commits@incubator.apache.org From: abroekhuis@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110107152642.90EB023889EB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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