From: <ego...@us...> - 2015-01-26 07:56:58
|
Revision: 60553 http://sourceforge.net/p/firebird/code/60553 Author: egorpugin Date: 2015-01-26 07:56:51 +0000 (Mon, 26 Jan 2015) Log Message: ----------- [build] [cmake] Fix build, typos. Move some projects to 'Boot' dir. Modified Paths: -------------- firebird/trunk/builds/cmake/Configure.cmake firebird/trunk/examples/CMakeLists.txt firebird/trunk/src/CMakeLists.txt Modified: firebird/trunk/builds/cmake/Configure.cmake =================================================================== --- firebird/trunk/builds/cmake/Configure.cmake 2015-01-25 22:24:41 UTC (rev 60552) +++ firebird/trunk/builds/cmake/Configure.cmake 2015-01-26 07:56:51 UTC (rev 60553) @@ -66,7 +66,7 @@ endif() if (IOS) - set(CMAKE_SYSTEM_PROCESSOR “arm”) # armv7 ? + set(CMAKE_SYSTEM_PROCESSOR "arm") # armv7 ? add_definitions(-D__arm__) endif() Modified: firebird/trunk/examples/CMakeLists.txt =================================================================== --- firebird/trunk/examples/CMakeLists.txt 2015-01-25 22:24:41 UTC (rev 60552) +++ firebird/trunk/examples/CMakeLists.txt 2015-01-26 07:56:51 UTC (rev 60553) @@ -34,7 +34,7 @@ add_executable (empbuild empbuild.c ${CMAKE_CURRENT_SOURCE_DIR}/empbuild/empbuild.e) target_link_libraries (empbuild yvalve) set_output_directory (empbuild empbuild FORCE) -add_dependencies (empbuild gfix engine12) +add_dependencies (empbuild gfix engine12 fbtrace) project_group (empbuild Examples) file(GLOB files Modified: firebird/trunk/src/CMakeLists.txt =================================================================== --- firebird/trunk/src/CMakeLists.txt 2015-01-25 22:24:41 UTC (rev 60552) +++ firebird/trunk/src/CMakeLists.txt 2015-01-26 07:56:51 UTC (rev 60553) @@ -247,9 +247,9 @@ # ################################################################################ -############################################################################### +######################################## # LIBRARY boot_alice -############################################################################### +######################################## file(GLOB alice_src "alice/*.cpp" "alice/*.h") @@ -267,16 +267,16 @@ endif() # if (NOT CMAKE_CROSSCOMPILING) -############################################################################### +######################################## # LIBRARY alice -############################################################################### +######################################## add_library (alice ${alice_src} ${alice_generated_src_master}) -############################################################################### +######################################## # LIBRARY boot_burp -############################################################################### +######################################## file(GLOB burp_src "burp/*.cpp" "burp/*.h") @@ -296,16 +296,16 @@ endif() # if (NOT CMAKE_CROSSCOMPILING) -############################################################################### +######################################## # LIBRARY burp -############################################################################### +######################################## add_library (burp ${burp_src} ${burp_generated_src_master}) -############################################################################### +######################################## # LIBRARY common -############################################################################### +######################################## file(GLOB common_src "common/*.cpp" "common/classes/*.cpp" "common/config/*.cpp" "common/os/${OS_DIR}/*.cpp") file(GLOB_RECURSE common_include "common/*.h") @@ -502,7 +502,7 @@ add_library (udr_engine SHARED ${udr_engine_src} ${VERSION_RC}) target_link_libraries (udr_engine common yvalve) set_output_directory (udr_engine plugins) -set_exported_symbols (udr_engine udr_engine) +set_exported_symbols (udr_engine plugin) ######################################## @@ -567,6 +567,7 @@ add_executable (gpre_boot ${gpre_boot_src} ${VERSION_RC}) target_link_libraries (gpre_boot gpre_common common ${LIB_Ws2_32}) +project_group (gpre_boot Boot) endif() # if (NOT CMAKE_CROSSCOMPILING) @@ -611,6 +612,7 @@ add_executable (build_msg ${build_msg_generated_src_master} ${VERSION_RC}) target_link_libraries (build_msg common yvalve) +project_group (build_msg Boot) endif() # if (NOT CMAKE_CROSSCOMPILING) @@ -628,6 +630,7 @@ add_executable (codes ${codes_generated_src_master} ${VERSION_RC}) target_link_libraries (codes yvalve) +project_group (codes Boot) add_custom_command( TARGET codes POST_BUILD @@ -697,17 +700,17 @@ target_link_libraries (fbtracemgr common yvalve) -############################################################################### +######################################## # EXECUTABLE gfix -############################################################################### +######################################## add_executable (gfix alice/main/aliceMain.cpp ${VERSION_RC}) target_link_libraries (gfix alice common yvalve) -############################################################################### +######################################## # EXECUTABLE boot_gbak -############################################################################### +######################################## file(GLOB gbak_include "burp/*.h") @@ -720,25 +723,25 @@ endif() # if (NOT CMAKE_CROSSCOMPILING) -############################################################################### +######################################## # EXECUTABLE gbak -############################################################################### +######################################## add_executable (gbak burp/main/burpMain.cpp ${gbak_include} ${VERSION_RC}) target_link_libraries (gbak burp yvalve common) -############################################################################### +######################################## # EXECUTABLE gsplit -############################################################################### +######################################## add_executable (gsplit burp/split/spit.cpp burp/split/spit.h ${VERSION_RC}) target_link_libraries (gsplit burp common yvalve) -############################################################################### +######################################## # EXECUTABLE boot_isql -############################################################################### +######################################## file(GLOB isql_src "isql/*.cpp" "isql/*.h") @@ -792,17 +795,17 @@ endif() -############################################################################### +######################################## # EXECUTABLE isql -############################################################################### +######################################## add_executable (isql ${isql_src} ${isql_generated_src_master} ${VERSION_RC}) target_link_libraries (isql common yvalve) -############################################################################### +######################################## # EXECUTABLE qli -############################################################################### +######################################## file(GLOB qli_src "qli/*.cpp" "qli/*.h") set(qli_generated_src This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |