Commit ee2f607a authored by Jan Koester's avatar Jan Koester
Browse files

delete systemppfork

parent 0fee5f89
Loading
Loading
Loading
Loading
+0 −38
Original line number Diff line number Diff line
[Buildset]
BuildItems=@Variant(\x00\x00\x00\t\x00\x00\x00\x00\x01\x00\x00\x00\x0b\x00\x00\x00\x00\x01\x00\x00\x00\x16\x00l\x00i\x00b\x00s\x00y\x00s\x00t\x00e\x00m\x00p\x00p)

[CMake]
Build Directory Count=1
Current Build Directory Index-Host System=0

[CMake][CMake Build Directory 0]
Build Directory Path=/home/jan/Projects/feos/libsystempp/build
Build Type=Debug
CMake Binary=/usr/bin/cmake
CMake Executable=/usr/bin/cmake
Environment Profile=
Extra Arguments=
Install Directory=/usr/local
Runtime=Host System

[Launch]
Launch Configurations=Launch Configuration 0

[Launch][Launch Configuration 0]
Configured Launch Modes=execute
Configured Launchers=nativeAppLauncher
Name=main
Type=Native Application

[Launch][Launch Configuration 0][Data]
Arguments=
Dependencies=@Variant(\x00\x00\x00\t\x00\x00\x00\x00\x01\x00\x00\x00\x0b\x00\x00\x00\x00\x03\x00\x00\x00\x16\x00l\x00i\x00b\x00s\x00y\x00s\x00t\x00e\x00m\x00p\x00p\x00\x00\x00\x08\x00t\x00e\x00s\x00t\x00\x00\x00\x08\x00m\x00a\x00i\x00n)
Dependency Action=Build
EnvironmentGroup=
Executable=file:///home/jan/Projects/feos/libsystempp
External Terminal=konsole --noclose --workdir %workdir -e %exe
Kill Before Executing Again=4194304
Project Target=libsystempp,test,main
Use External Terminal=false
Working Directory=
isExecutable=false

libs/libsystempp/CMakeLists.txt

deleted100644 → 0
+0 −38
Original line number Diff line number Diff line
project(libsystempp CXX ASM)
cmake_minimum_required(VERSION 2.6)
enable_testing ()

set(LIBV "1.0.0")
set(Upstream_VERSION 1.0.0)

IF(CMAKE_BUILD_TYPE MATCHES DEBUG)
  if( CMAKE_CXX_COMPILER_ID MATCHES GNU )
     SET(CMAKE_CXX_FLAGS "-g -Wall")
  endif( CMAKE_CXX_COMPILER_ID MATCHES GNU )
  if(CMAKE_CXX_COMPILER_ID MATCHES ".*clang")
    SET(CMAKE_CXX_FLAGS "-g -Wthread-safety -Wall")
  endif( CMAKE_CXX_COMPILER_ID MATCHES ".*clang" )
ELSE(CMAKE_BUILD_TYPE MATCHES DEBUG )
  if( CMAKE_CXX_COMPILER_ID MATCHES GNU )
    SET(CMAKE_CXX_FLAGS "-O0 -Wall")
  endif( CMAKE_CXX_COMPILER_ID MATCHES GNU )
ENDIF(CMAKE_BUILD_TYPE MATCHES DEBUG)

set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH}  ${CMAKE_SOURCE_DIR}/cmake/)

IF( CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" )
  list(APPEND ${CMAKE_CXX_FLAGS} "-msse2")
  add_definitions( -Dx86_64)
ENDIF( CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" )

set(CAN_USE_ASSEMBLER TRUE)
set(ASM_OPTIONS "-x assembler-with-cpp")
set(CMAKE_ASM_FLAGS "${CFLAGS} ${ASM_OPTIONS}" )

configure_file(config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h)

include_directories(${CMAKE_CURRENT_BINARY_DIR})

add_subdirectory(doc)
add_subdirectory(src)
add_subdirectory(test)
+0 −30
Original line number Diff line number Diff line
# Find the kernel release
execute_process(
  COMMAND uname -r
  OUTPUT_VARIABLE LINUX_RELEASE
  OUTPUT_STRIP_TRAILING_WHITESPACE
)

# Find the headers
find_path(LINUXHEADERS_DIR
  include/linux/mutex.h
  PATHS /usr/src/linux-headers-${LINUX_RELEASE}
)

message(STATUS "Linux release: ${LINUX_RELEASE}")
message(STATUS "Linux headers: ${LINUXHEADERS_DIR}")

if (EXISTS ${LINUXHEADERS_DIR})
  set(LINUXHEADERS_INCLUDE_DIRS
    ${LINUXHEADERS_DIR}
    ${LINUXHEADERS_DIR}/include
    ${LINUXHEADERS_DIR}/arch/x86/include/
    ${LINUXHEADERS_DIR}/arch/x86/include/generated/
  )
  set(LINUXHEADERS_FOUND 1 )
else()
  set(LINUXHEADERS_FOUND 0)
endif()

mark_as_advanced(LINUXHEADERS_FOUND)
 

libs/libsystempp/config.h.in

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
 
+0 −22
Original line number Diff line number Diff line
# add a target to generate API documentation with Doxygen
find_package(Doxygen)
option(BUILD_DOCUMENTATION "Create and install the HTML based API documentation (requires Doxygen)" ${DOXYGEN_FOUND})

if(BUILD_DOCUMENTATION)
    if(NOT DOXYGEN_FOUND)
        message(FATAL_ERROR "Doxygen is needed to build the documentation.")
    endif()

    set(doxyfile_in ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in)
    set(doxyfile ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)

    configure_file(${doxyfile_in} ${doxyfile} @ONLY)

    add_custom_target(doc
        COMMAND ${DOXYGEN_EXECUTABLE} ${doxyfile}
        WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
        COMMENT "Generating API documentation with Doxygen"
        VERBATIM)

    #install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html DESTINATION share/doc/libsystempp)
endif()
Loading