Travis ci update with OSX build
This commit is contained in:
parent
0576c47bb2
commit
0cf05f039e
|
@ -1,4 +1,4 @@
|
||||||
/build/
|
/_build/
|
||||||
/*.dll
|
/*.dll
|
||||||
/tags
|
/tags
|
||||||
/assets.pack
|
/assets.pack
|
||||||
|
|
37
.travis.yml
37
.travis.yml
|
@ -1,4 +1,7 @@
|
||||||
sudo: required
|
sudo: required
|
||||||
|
os:
|
||||||
|
- linux
|
||||||
|
- osx
|
||||||
dist: trusty
|
dist: trusty
|
||||||
language: c
|
language: c
|
||||||
cache: ccache
|
cache: ccache
|
||||||
|
@ -12,31 +15,25 @@ env:
|
||||||
- CCACHE_CPP2=yes
|
- CCACHE_CPP2=yes
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- git clone git://git.cryptomilk.org/projects/cmocka.git
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cp build/osx/Brewfile . ; fi
|
||||||
- cd cmocka && mkdir build && cd build
|
|
||||||
- cmake .. && make -j2 && sudo make install
|
|
||||||
- cd ../..
|
|
||||||
- echo -n | openssl s_client -connect https://scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
|
|
||||||
- sudo add-apt-repository -y ppa:zoogie/sdl2-snapshots
|
|
||||||
- sudo add-apt-repository -y ppa:george-edison55/cmake-3.x
|
|
||||||
- sudo add-apt-repository -y ppa:h-rayflood/llvm
|
|
||||||
|
|
||||||
#g++4.9
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then echo -n | openssl s_client -connect https://scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca- ; fi
|
||||||
- if [ "$CXX" = "g++" ]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then git clone git://git.cryptomilk.org/projects/cmocka.git ; fi
|
||||||
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo add-apt-repository -y ppa:zoogie/sdl2-snapshots ; fi
|
||||||
#clang 4.0
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update -qq ; fi
|
||||||
- if [ "$CXX" == "clang++" ]; then wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -; fi
|
|
||||||
- if [ "$CXX" == "clang++" ]; then sudo add-apt-repository -y "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-4.0 main"; fi
|
|
||||||
|
|
||||||
- sudo apt-get update -qq
|
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- sudo apt-get install -y libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew bundle; fi
|
||||||
- sudo apt-get install -y cmake cmake-data lua5.2 liblua5.2-dev
|
|
||||||
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cd cmocka && mkdir build && cd build ; fi
|
||||||
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cmake .. && make -j2 && sudo make install ; fi
|
||||||
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cd ../.. ; fi
|
||||||
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev ; fi
|
||||||
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y lua5.2 liblua5.2-dev ; fi
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- mkdir build
|
- mkdir _build
|
||||||
- cd build
|
- cd _build
|
||||||
- cmake --version
|
- cmake --version
|
||||||
- cmake ..
|
- cmake ..
|
||||||
- make
|
- make
|
||||||
|
|
|
@ -12,13 +12,13 @@ set(breakhack_RELEASE_TYPE "(early access)")
|
||||||
|
|
||||||
include(FindLua)
|
include(FindLua)
|
||||||
include(FindPhysFS)
|
include(FindPhysFS)
|
||||||
include(cmake/FindSDL2.cmake)
|
include(build/cmake/FindSDL2.cmake)
|
||||||
include(cmake/FindSDL2_image.cmake)
|
include(build/cmake/FindSDL2_image.cmake)
|
||||||
include(cmake/FindSDL2_ttf.cmake)
|
include(build/cmake/FindSDL2_ttf.cmake)
|
||||||
include(cmake/FindSDL2_mixer.cmake)
|
include(build/cmake/FindSDL2_mixer.cmake)
|
||||||
include(cmake/FindCCache.cmake)
|
include(build/cmake/FindCCache.cmake)
|
||||||
include(cmake/FindCMocka.cmake)
|
include(build/cmake/FindCMocka.cmake)
|
||||||
include(cmake/Findcppcheck.cmake)
|
include(build/cmake/Findcppcheck.cmake)
|
||||||
|
|
||||||
configure_file(
|
configure_file(
|
||||||
"${PROJECT_SOURCE_DIR}/src/config.h.in"
|
"${PROJECT_SOURCE_DIR}/src/config.h.in"
|
||||||
|
@ -111,8 +111,10 @@ if (NOT MSVC)
|
||||||
-Wstrict-prototypes
|
-Wstrict-prototypes
|
||||||
-Wmissing-prototypes
|
-Wmissing-prototypes
|
||||||
-Wconversion -Wno-sign-conversion
|
-Wconversion -Wno-sign-conversion
|
||||||
-static -static-libgcc -static-libstdc++
|
|
||||||
)
|
)
|
||||||
|
if (NOT CLANG)
|
||||||
|
add_definitions(-static -static-libgcc -static-libstdc++)
|
||||||
|
endif ()
|
||||||
endif (NOT MSVC)
|
endif (NOT MSVC)
|
||||||
|
|
||||||
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -DDEBUG")
|
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -DDEBUG")
|
||||||
|
|
8
Makefile
8
Makefile
|
@ -1,13 +1,13 @@
|
||||||
all:
|
all:
|
||||||
@make -sC build
|
@make -sC _build
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@make clean -sC build
|
@make clean -sC _build
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
|
|
||||||
test:
|
test:
|
||||||
@make test -sC build
|
@make test -sC _build
|
||||||
.PHONY: test
|
.PHONY: test
|
||||||
|
|
||||||
run: $(all)
|
run: $(all)
|
||||||
|
@ -15,5 +15,5 @@ run: $(all)
|
||||||
.PHONY: run
|
.PHONY: run
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
@make lint -sC build
|
@make lint -sC _build
|
||||||
.PHONY: lint
|
.PHONY: lint
|
||||||
|
|
|
@ -0,0 +1,440 @@
|
||||||
|
# This is the CMakeCache file.
|
||||||
|
# For build in directory: /home/linus/ws/breakhack/build
|
||||||
|
# It was generated by CMake: /usr/bin/cmake
|
||||||
|
# You can edit this file to change values found and used by cmake.
|
||||||
|
# If you do not want to change any of the values, simply exit the editor.
|
||||||
|
# If you do want to change a value, simply edit, save, and exit the editor.
|
||||||
|
# The syntax for the file is as follows:
|
||||||
|
# KEY:TYPE=VALUE
|
||||||
|
# KEY is the name of a variable in the cache.
|
||||||
|
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
|
||||||
|
# VALUE is the current value for the KEY.
|
||||||
|
|
||||||
|
########################
|
||||||
|
# EXTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CCACHE_PROGRAM:FILEPATH=/usr/bin/ccache
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_AR:FILEPATH=/usr/bin/ar
|
||||||
|
|
||||||
|
//Choose the type of build, options are: None Debug Release RelWithDebInfo
|
||||||
|
// MinSizeRel ...
|
||||||
|
CMAKE_BUILD_TYPE:STRING=
|
||||||
|
|
||||||
|
//Enable/Disable color output during build.
|
||||||
|
CMAKE_COLOR_MAKEFILE:BOOL=ON
|
||||||
|
|
||||||
|
//C compiler
|
||||||
|
CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib
|
||||||
|
|
||||||
|
//Flags used by the C compiler during all build types.
|
||||||
|
CMAKE_C_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the C compiler during DEBUG builds.
|
||||||
|
CMAKE_C_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the C compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELEASE builds.
|
||||||
|
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the linker during all build types.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during DEBUG builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during MINSIZEREL builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELEASE builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Enable/Disable output of compile commands during generation.
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF
|
||||||
|
|
||||||
|
//Install path prefix, prepended onto install directories.
|
||||||
|
CMAKE_INSTALL_PREFIX:PATH=/usr/local
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_LINKER:FILEPATH=/usr/bin/ld
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// all build types.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// DEBUG builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// MINSIZEREL builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELEASE builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELWITHDEBINFO builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_NM:FILEPATH=/usr/bin/nm
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_NAME:STATIC=breakhack
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when installing shared libraries,
|
||||||
|
// but are added when building.
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when using shared libraries.
|
||||||
|
CMAKE_SKIP_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_STRIP:FILEPATH=/usr/bin/strip
|
||||||
|
|
||||||
|
//If this value is on, makefiles will be generated without the
|
||||||
|
// .SILENT directive, and all commands will be echoed to the console
|
||||||
|
// during the make. This is useful for debugging only. With Visual
|
||||||
|
// Studio IDE projects all commands are done without /nologo.
|
||||||
|
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
CMOCKA_INCLUDE_DIR:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
CMOCKA_LIBRARY:FILEPATH=/usr/lib/libcmocka.so
|
||||||
|
|
||||||
|
//Enable to build RPM source packages
|
||||||
|
CPACK_SOURCE_RPM:BOOL=OFF
|
||||||
|
|
||||||
|
//Enable to build TBZ2 source packages
|
||||||
|
CPACK_SOURCE_TBZ2:BOOL=ON
|
||||||
|
|
||||||
|
//Enable to build TGZ source packages
|
||||||
|
CPACK_SOURCE_TGZ:BOOL=ON
|
||||||
|
|
||||||
|
//Enable to build TXZ source packages
|
||||||
|
CPACK_SOURCE_TXZ:BOOL=ON
|
||||||
|
|
||||||
|
//Enable to build TZ source packages
|
||||||
|
CPACK_SOURCE_TZ:BOOL=ON
|
||||||
|
|
||||||
|
//Enable to build ZIP source packages
|
||||||
|
CPACK_SOURCE_ZIP:BOOL=OFF
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CPPCHECK_EXECUTABLE:FILEPATH=/usr/bin/cppcheck
|
||||||
|
|
||||||
|
//Path to search for cppcheck
|
||||||
|
CPPCHECK_ROOT_DIR:PATH=
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
LUA_INCLUDE_PREFIX:PATH=/usr
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
LUA_LIBRARY:FILEPATH=/usr/lib/liblua5.3.so
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
LUA_MATH_LIBRARY:FILEPATH=/usr/lib/libm.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
PHYSFS_INCLUDE_DIR:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
PHYSFS_LIBRARY:FILEPATH=/usr/lib/libphysfs.so
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
SDL2MAIN_LIBRARY:FILEPATH=/usr/lib/libSDL2main.a
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
SDL2_IMAGE_INCLUDE_DIR:PATH=/usr/include/SDL2
|
||||||
|
|
||||||
|
//Where the SDL2_image Library can be found
|
||||||
|
SDL2_IMAGE_LIBRARY:STRING=/usr/lib/libSDL2_image.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
SDL2_INCLUDE_DIR:PATH=/usr/include/SDL2
|
||||||
|
|
||||||
|
//Where the SDL2 Library can be found
|
||||||
|
SDL2_LIBRARY:STRING=/usr/lib/libSDL2main.a;/usr/lib/libSDL2.so;-lpthread
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
SDL2_MIXER_INCLUDE_DIR:PATH=/usr/include/SDL2
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
SDL2_MIXER_LIBRARY:FILEPATH=/usr/lib/libSDL2_mixer.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
SDL2_TTF_INCLUDE_DIR:PATH=/usr/include/SDL2
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
SDL2_TTF_LIBRARY:FILEPATH=/usr/lib/libSDL2_ttf.so
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
breakhack_BINARY_DIR:STATIC=/home/linus/ws/breakhack/build
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
breakhack_SOURCE_DIR:STATIC=/home/linus/ws/breakhack
|
||||||
|
|
||||||
|
|
||||||
|
########################
|
||||||
|
# INTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//ADVANCED property for variable: CMAKE_AR
|
||||||
|
CMAKE_AR-ADVANCED:INTERNAL=1
|
||||||
|
//This is the directory where this CMakeCache.txt was created
|
||||||
|
CMAKE_CACHEFILE_DIR:INTERNAL=/home/linus/ws/breakhack/build
|
||||||
|
//Major version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
||||||
|
//Minor version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MINOR_VERSION:INTERNAL=11
|
||||||
|
//Patch version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_PATCH_VERSION:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
|
||||||
|
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
//Path to CMake executable.
|
||||||
|
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
|
||||||
|
//Path to cpack program executable.
|
||||||
|
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
|
||||||
|
//Path to ctest program executable.
|
||||||
|
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER
|
||||||
|
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
|
||||||
|
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
|
||||||
|
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS
|
||||||
|
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
|
||||||
|
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
|
||||||
|
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//Path to cache edit program executable.
|
||||||
|
CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake
|
||||||
|
//Executable file format
|
||||||
|
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
|
||||||
|
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
|
||||||
|
//Name of external makefile project generator.
|
||||||
|
CMAKE_EXTRA_GENERATOR:INTERNAL=
|
||||||
|
//Name of generator.
|
||||||
|
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
|
||||||
|
//Generator instance identifier.
|
||||||
|
CMAKE_GENERATOR_INSTANCE:INTERNAL=
|
||||||
|
//Name of generator platform.
|
||||||
|
CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
||||||
|
//Name of generator toolset.
|
||||||
|
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
||||||
|
//Have symbol pthread_create
|
||||||
|
CMAKE_HAVE_LIBC_CREATE:INTERNAL=
|
||||||
|
//Have library pthreads
|
||||||
|
CMAKE_HAVE_PTHREADS_CREATE:INTERNAL=
|
||||||
|
//Have library pthread
|
||||||
|
CMAKE_HAVE_PTHREAD_CREATE:INTERNAL=1
|
||||||
|
//Have include pthread.h
|
||||||
|
CMAKE_HAVE_PTHREAD_H:INTERNAL=1
|
||||||
|
//Source directory with the top level CMakeLists.txt file for this
|
||||||
|
// project
|
||||||
|
CMAKE_HOME_DIRECTORY:INTERNAL=/home/linus/ws/breakhack
|
||||||
|
//Install .so files without execute permission.
|
||||||
|
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0
|
||||||
|
//ADVANCED property for variable: CMAKE_LINKER
|
||||||
|
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
|
||||||
|
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_NM
|
||||||
|
CMAKE_NM-ADVANCED:INTERNAL=1
|
||||||
|
//number of local generators
|
||||||
|
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJCOPY
|
||||||
|
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJDUMP
|
||||||
|
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
|
||||||
|
//Platform information initialized
|
||||||
|
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_RANLIB
|
||||||
|
CMAKE_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//Path to CMake installation.
|
||||||
|
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.11
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_RPATH
|
||||||
|
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STRIP
|
||||||
|
CMAKE_STRIP-ADVANCED:INTERNAL=1
|
||||||
|
//uname command
|
||||||
|
CMAKE_UNAME:INTERNAL=/usr/bin/uname
|
||||||
|
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
||||||
|
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMOCKA_INCLUDE_DIR
|
||||||
|
CMOCKA_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CPACK_SOURCE_RPM
|
||||||
|
CPACK_SOURCE_RPM-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CPACK_SOURCE_TBZ2
|
||||||
|
CPACK_SOURCE_TBZ2-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CPACK_SOURCE_TGZ
|
||||||
|
CPACK_SOURCE_TGZ-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CPACK_SOURCE_TXZ
|
||||||
|
CPACK_SOURCE_TXZ-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CPACK_SOURCE_TZ
|
||||||
|
CPACK_SOURCE_TZ-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CPACK_SOURCE_ZIP
|
||||||
|
CPACK_SOURCE_ZIP-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CPPCHECK_EXECUTABLE
|
||||||
|
CPPCHECK_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CPPCHECK_ROOT_DIR
|
||||||
|
CPPCHECK_ROOT_DIR-ADVANCED:INTERNAL=1
|
||||||
|
//Details about finding CCache
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_CCache:INTERNAL=[/usr/bin/ccache][v()]
|
||||||
|
//Details about finding CMocka
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_CMocka:INTERNAL=[/usr/lib/libcmocka.so][/usr/include][v()]
|
||||||
|
//Details about finding Lua
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_Lua:INTERNAL=[/usr/lib/liblua5.3.so;/usr/lib/libm.so][/usr/include][v5.3.4()]
|
||||||
|
//Details about finding PhysFS
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_PhysFS:INTERNAL=[/usr/lib/libphysfs.so][/usr/include][v()]
|
||||||
|
//Details about finding SDL2
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_SDL2:INTERNAL=[/usr/lib/libSDL2main.a;/usr/lib/libSDL2.so;-lpthread][/usr/include/SDL2][v()]
|
||||||
|
//Details about finding SDL2_IMAGE
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_SDL2_IMAGE:INTERNAL=[/usr/lib/libSDL2_image.so][/usr/include/SDL2][v()]
|
||||||
|
//Details about finding SDL2_mixer
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_SDL2_mixer:INTERNAL=[/usr/lib/libSDL2_mixer.so][/usr/include/SDL2][v2.0.2()]
|
||||||
|
//Details about finding SDL2_ttf
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_SDL2_ttf:INTERNAL=[/usr/lib/libSDL2_ttf.so][/usr/include/SDL2][v2.0.14()]
|
||||||
|
//Details about finding Threads
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()]
|
||||||
|
//Details about finding cppcheck
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_cppcheck:INTERNAL=[/usr/bin/cppcheck --enable=all --enable=unusedFunction --enable=style --quiet -I some/include/path][/usr/bin/cppcheck][--enable=all][--enable=unusedFunction][--enable=style][-I][--quiet][v()]
|
||||||
|
//ADVANCED property for variable: LUA_LIBRARY
|
||||||
|
LUA_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: LUA_MATH_LIBRARY
|
||||||
|
LUA_MATH_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
SDL2_IMAGE_LIBRARY_TEMP:INTERNAL=/usr/lib/libSDL2_image.so
|
||||||
|
SDL2_LIBRARY_TEMP:INTERNAL=/usr/lib/libSDL2main.a;/usr/lib/libSDL2.so;-lpthread
|
||||||
|
//ADVANCED property for variable: SDL2_MIXER_INCLUDE_DIR
|
||||||
|
SDL2_MIXER_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: SDL2_MIXER_LIBRARY
|
||||||
|
SDL2_MIXER_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: SDL2_TTF_INCLUDE_DIR
|
||||||
|
SDL2_TTF_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: SDL2_TTF_LIBRARY
|
||||||
|
SDL2_TTF_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
|
|
@ -0,0 +1,73 @@
|
||||||
|
set(CMAKE_C_COMPILER "/usr/bin/cc")
|
||||||
|
set(CMAKE_C_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_C_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION "8.1.0")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_C_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
|
||||||
|
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert")
|
||||||
|
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
|
||||||
|
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
|
||||||
|
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
|
||||||
|
|
||||||
|
set(CMAKE_C_PLATFORM_ID "Linux")
|
||||||
|
set(CMAKE_C_SIMULATE_ID "")
|
||||||
|
set(CMAKE_C_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "/usr/bin/ar")
|
||||||
|
set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar")
|
||||||
|
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
||||||
|
set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib")
|
||||||
|
set(CMAKE_LINKER "/usr/bin/ld")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCC 1)
|
||||||
|
set(CMAKE_C_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_C_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_C_ABI_COMPILED TRUE)
|
||||||
|
set(CMAKE_COMPILER_IS_MINGW )
|
||||||
|
set(CMAKE_COMPILER_IS_CYGWIN )
|
||||||
|
if(CMAKE_COMPILER_IS_CYGWIN)
|
||||||
|
set(CYGWIN 1)
|
||||||
|
set(UNIX 1)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ENV_VAR "CC")
|
||||||
|
|
||||||
|
if(CMAKE_COMPILER_IS_MINGW)
|
||||||
|
set(MINGW 1)
|
||||||
|
endif()
|
||||||
|
set(CMAKE_C_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
|
||||||
|
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
set(CMAKE_C_LINKER_PREFERENCE 10)
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_C_SIZEOF_DATA_PTR "8")
|
||||||
|
set(CMAKE_C_COMPILER_ABI "ELF")
|
||||||
|
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
|
||||||
|
|
||||||
|
if(CMAKE_C_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0;/usr/lib;/lib")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
Binary file not shown.
|
@ -0,0 +1,15 @@
|
||||||
|
set(CMAKE_HOST_SYSTEM "Linux-4.16.7-1-ARCH")
|
||||||
|
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_HOST_SYSTEM_VERSION "4.16.7-1-ARCH")
|
||||||
|
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM "Linux-4.16.7-1-ARCH")
|
||||||
|
set(CMAKE_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_SYSTEM_VERSION "4.16.7-1-ARCH")
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
|
||||||
|
|
||||||
|
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM_LOADED 1)
|
|
@ -0,0 +1,623 @@
|
||||||
|
#ifdef __cplusplus
|
||||||
|
# error "A C++ compiler has been selected for C."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__18CXX)
|
||||||
|
# define ID_VOID_MAIN
|
||||||
|
#endif
|
||||||
|
#if defined(__CLASSIC_C__)
|
||||||
|
/* cv-qualifiers did not exist in K&R C */
|
||||||
|
# define const
|
||||||
|
# define volatile
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Version number components: V=Version, R=Revision, P=Patch
|
||||||
|
Version date components: YYYY=Year, MM=Month, DD=Day */
|
||||||
|
|
||||||
|
#if defined(__INTEL_COMPILER) || defined(__ICC)
|
||||||
|
# define COMPILER_ID "Intel"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
/* __INTEL_COMPILER = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
||||||
|
# if defined(__INTEL_COMPILER_UPDATE)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
||||||
|
# endif
|
||||||
|
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__PATHCC__)
|
||||||
|
# define COMPILER_ID "PathScale"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||||
|
# if defined(__PATHCC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||||
|
# define COMPILER_ID "Embarcadero"
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__)
|
||||||
|
# define COMPILER_ID "Borland"
|
||||||
|
/* __BORLANDC__ = 0xVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||||
|
# define COMPILER_ID "Watcom"
|
||||||
|
/* __WATCOMC__ = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# define COMPILER_ID "OpenWatcom"
|
||||||
|
/* __WATCOMC__ = VVRP + 1100 */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SUNPRO_C)
|
||||||
|
# define COMPILER_ID "SunPro"
|
||||||
|
# if __SUNPRO_C >= 0x5100
|
||||||
|
/* __SUNPRO_C = 0xVRRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||||
|
# else
|
||||||
|
/* __SUNPRO_CC = 0xVRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__HP_cc)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
/* __HP_cc = VVRRPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
|
||||||
|
|
||||||
|
#elif defined(__DECC)
|
||||||
|
# define COMPILER_ID "Compaq"
|
||||||
|
/* __DECC_VER = VVRRTPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
|
||||||
|
# define COMPILER_ID "zOS"
|
||||||
|
# if defined(__ibmxl__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||||
|
# else
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ibmxl__) || (defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800)
|
||||||
|
# define COMPILER_ID "XL"
|
||||||
|
# if defined(__ibmxl__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||||
|
# else
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
|
||||||
|
# define COMPILER_ID "VisualAge"
|
||||||
|
# if defined(__ibmxl__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||||
|
# else
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__PGI)
|
||||||
|
# define COMPILER_ID "PGI"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||||
|
# if defined(__PGIC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_CRAYC)
|
||||||
|
# define COMPILER_ID "Cray"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# define COMPILER_ID "TI"
|
||||||
|
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||||
|
|
||||||
|
#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
|
||||||
|
# define COMPILER_ID "Fujitsu"
|
||||||
|
|
||||||
|
#elif defined(__TINYC__)
|
||||||
|
# define COMPILER_ID "TinyCC"
|
||||||
|
|
||||||
|
#elif defined(__BCC__)
|
||||||
|
# define COMPILER_ID "Bruce"
|
||||||
|
|
||||||
|
#elif defined(__SCO_VERSION__)
|
||||||
|
# define COMPILER_ID "SCO"
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||||
|
# define COMPILER_ID "AppleClang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
||||||
|
|
||||||
|
#elif defined(__clang__)
|
||||||
|
# define COMPILER_ID "Clang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
# define COMPILER_ID "GNU"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
# define COMPILER_ID "MSVC"
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# if defined(_MSC_FULL_VER)
|
||||||
|
# if _MSC_VER >= 1400
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||||
|
# else
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_BUILD)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
|
||||||
|
# define COMPILER_ID "ADSP"
|
||||||
|
#if defined(__VISUALDSPVERSION__)
|
||||||
|
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# define COMPILER_ID "IAR"
|
||||||
|
# if defined(__VER__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__ARMCC_VERSION)
|
||||||
|
# define COMPILER_ID "ARMCC"
|
||||||
|
#if __ARMCC_VERSION >= 1000000
|
||||||
|
/* __ARMCC_VERSION = VRRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#else
|
||||||
|
/* __ARMCC_VERSION = VRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
|
||||||
|
# define COMPILER_ID "SDCC"
|
||||||
|
# if defined(__SDCC_VERSION_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
|
||||||
|
# else
|
||||||
|
/* SDCC = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
|
||||||
|
# define COMPILER_ID "MIPSpro"
|
||||||
|
# if defined(_SGI_COMPILER_VERSION)
|
||||||
|
/* _SGI_COMPILER_VERSION = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
|
||||||
|
# else
|
||||||
|
/* _COMPILER_VERSION = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
/* These compilers are either not known or too old to define an
|
||||||
|
identification macro. Try to identify the platform and guess that
|
||||||
|
it is the native compiler. */
|
||||||
|
#elif defined(__sgi)
|
||||||
|
# define COMPILER_ID "MIPSpro"
|
||||||
|
|
||||||
|
#elif defined(__hpux) || defined(__hpua)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
|
||||||
|
#else /* unknown compiler */
|
||||||
|
# define COMPILER_ID ""
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __QNXNTO__
|
||||||
|
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__CRAYXE) || defined(__CRAYXC)
|
||||||
|
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define STRINGIFY_HELPER(X) #X
|
||||||
|
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||||
|
|
||||||
|
/* Identify known platforms by name. */
|
||||||
|
#if defined(__linux) || defined(__linux__) || defined(linux)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
#elif defined(__CYGWIN__)
|
||||||
|
# define PLATFORM_ID "Cygwin"
|
||||||
|
|
||||||
|
#elif defined(__MINGW32__)
|
||||||
|
# define PLATFORM_ID "MinGW"
|
||||||
|
|
||||||
|
#elif defined(__APPLE__)
|
||||||
|
# define PLATFORM_ID "Darwin"
|
||||||
|
|
||||||
|
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||||
|
# define PLATFORM_ID "Windows"
|
||||||
|
|
||||||
|
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||||
|
# define PLATFORM_ID "FreeBSD"
|
||||||
|
|
||||||
|
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||||
|
# define PLATFORM_ID "NetBSD"
|
||||||
|
|
||||||
|
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||||
|
# define PLATFORM_ID "OpenBSD"
|
||||||
|
|
||||||
|
#elif defined(__sun) || defined(sun)
|
||||||
|
# define PLATFORM_ID "SunOS"
|
||||||
|
|
||||||
|
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||||
|
# define PLATFORM_ID "AIX"
|
||||||
|
|
||||||
|
#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
|
||||||
|
# define PLATFORM_ID "IRIX"
|
||||||
|
|
||||||
|
#elif defined(__hpux) || defined(__hpux__)
|
||||||
|
# define PLATFORM_ID "HP-UX"
|
||||||
|
|
||||||
|
#elif defined(__HAIKU__)
|
||||||
|
# define PLATFORM_ID "Haiku"
|
||||||
|
|
||||||
|
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||||
|
# define PLATFORM_ID "BeOS"
|
||||||
|
|
||||||
|
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||||
|
# define PLATFORM_ID "QNX"
|
||||||
|
|
||||||
|
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||||
|
# define PLATFORM_ID "Tru64"
|
||||||
|
|
||||||
|
#elif defined(__riscos) || defined(__riscos__)
|
||||||
|
# define PLATFORM_ID "RISCos"
|
||||||
|
|
||||||
|
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||||
|
# define PLATFORM_ID "SINIX"
|
||||||
|
|
||||||
|
#elif defined(__UNIX_SV__)
|
||||||
|
# define PLATFORM_ID "UNIX_SV"
|
||||||
|
|
||||||
|
#elif defined(__bsdos__)
|
||||||
|
# define PLATFORM_ID "BSDOS"
|
||||||
|
|
||||||
|
#elif defined(_MPRAS) || defined(MPRAS)
|
||||||
|
# define PLATFORM_ID "MP-RAS"
|
||||||
|
|
||||||
|
#elif defined(__osf) || defined(__osf__)
|
||||||
|
# define PLATFORM_ID "OSF1"
|
||||||
|
|
||||||
|
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||||
|
# define PLATFORM_ID "SCO_SV"
|
||||||
|
|
||||||
|
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||||
|
# define PLATFORM_ID "ULTRIX"
|
||||||
|
|
||||||
|
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||||
|
# define PLATFORM_ID "Xenix"
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(__LINUX__)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
# elif defined(__DOS__)
|
||||||
|
# define PLATFORM_ID "DOS"
|
||||||
|
|
||||||
|
# elif defined(__OS2__)
|
||||||
|
# define PLATFORM_ID "OS2"
|
||||||
|
|
||||||
|
# elif defined(__WINDOWS__)
|
||||||
|
# define PLATFORM_ID "Windows3x"
|
||||||
|
|
||||||
|
# else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* For windows compilers MSVC and Intel we can determine
|
||||||
|
the architecture of the compiler being used. This is because
|
||||||
|
the compilers do not have flags that can change the architecture,
|
||||||
|
but rather depend on which compiler is being used
|
||||||
|
*/
|
||||||
|
#if defined(_WIN32) && defined(_MSC_VER)
|
||||||
|
# if defined(_M_IA64)
|
||||||
|
# define ARCHITECTURE_ID "IA64"
|
||||||
|
|
||||||
|
# elif defined(_M_X64) || defined(_M_AMD64)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64)
|
||||||
|
# define ARCHITECTURE_ID "ARM64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM)
|
||||||
|
# if _M_ARM == 4
|
||||||
|
# define ARCHITECTURE_ID "ARMV4I"
|
||||||
|
# elif _M_ARM == 5
|
||||||
|
# define ARCHITECTURE_ID "ARMV5I"
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_M_MIPS)
|
||||||
|
# define ARCHITECTURE_ID "MIPS"
|
||||||
|
|
||||||
|
# elif defined(_M_SH)
|
||||||
|
# define ARCHITECTURE_ID "SHx"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(_M_I86)
|
||||||
|
# define ARCHITECTURE_ID "I86"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# if defined(__ICCARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__ICCAVR__)
|
||||||
|
# define ARCHITECTURE_ID "AVR"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
#else
|
||||||
|
# define ARCHITECTURE_ID
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Convert integer to decimal digit literals. */
|
||||||
|
#define DEC(n) \
|
||||||
|
('0' + (((n) / 10000000)%10)), \
|
||||||
|
('0' + (((n) / 1000000)%10)), \
|
||||||
|
('0' + (((n) / 100000)%10)), \
|
||||||
|
('0' + (((n) / 10000)%10)), \
|
||||||
|
('0' + (((n) / 1000)%10)), \
|
||||||
|
('0' + (((n) / 100)%10)), \
|
||||||
|
('0' + (((n) / 10)%10)), \
|
||||||
|
('0' + ((n) % 10))
|
||||||
|
|
||||||
|
/* Convert integer to hex digit literals. */
|
||||||
|
#define HEX(n) \
|
||||||
|
('0' + ((n)>>28 & 0xF)), \
|
||||||
|
('0' + ((n)>>24 & 0xF)), \
|
||||||
|
('0' + ((n)>>20 & 0xF)), \
|
||||||
|
('0' + ((n)>>16 & 0xF)), \
|
||||||
|
('0' + ((n)>>12 & 0xF)), \
|
||||||
|
('0' + ((n)>>8 & 0xF)), \
|
||||||
|
('0' + ((n)>>4 & 0xF)), \
|
||||||
|
('0' + ((n) & 0xF))
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#ifdef COMPILER_VERSION_MAJOR
|
||||||
|
char const info_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
||||||
|
COMPILER_VERSION_MAJOR,
|
||||||
|
# ifdef COMPILER_VERSION_MINOR
|
||||||
|
'.', COMPILER_VERSION_MINOR,
|
||||||
|
# ifdef COMPILER_VERSION_PATCH
|
||||||
|
'.', COMPILER_VERSION_PATCH,
|
||||||
|
# ifdef COMPILER_VERSION_TWEAK
|
||||||
|
'.', COMPILER_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the internal version number. */
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
char const info_version_internal[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
||||||
|
'i','n','t','e','r','n','a','l','[',
|
||||||
|
COMPILER_VERSION_INTERNAL,']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
char const info_simulate_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||||
|
SIMULATE_VERSION_MAJOR,
|
||||||
|
# ifdef SIMULATE_VERSION_MINOR
|
||||||
|
'.', SIMULATE_VERSION_MINOR,
|
||||||
|
# ifdef SIMULATE_VERSION_PATCH
|
||||||
|
'.', SIMULATE_VERSION_PATCH,
|
||||||
|
# ifdef SIMULATE_VERSION_TWEAK
|
||||||
|
'.', SIMULATE_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||||
|
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(__STDC__)
|
||||||
|
# if (defined(_MSC_VER) && !defined(__clang__)) \
|
||||||
|
|| (defined(__ibmxl__) || defined(__IBMC__))
|
||||||
|
# define C_DIALECT "90"
|
||||||
|
# else
|
||||||
|
# define C_DIALECT
|
||||||
|
# endif
|
||||||
|
#elif __STDC_VERSION__ >= 201000L
|
||||||
|
# define C_DIALECT "11"
|
||||||
|
#elif __STDC_VERSION__ >= 199901L
|
||||||
|
# define C_DIALECT "99"
|
||||||
|
#else
|
||||||
|
# define C_DIALECT "90"
|
||||||
|
#endif
|
||||||
|
const char* info_language_dialect_default =
|
||||||
|
"INFO" ":" "dialect_default[" C_DIALECT "]";
|
||||||
|
|
||||||
|
/*--------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#ifdef ID_VOID_MAIN
|
||||||
|
void main() {}
|
||||||
|
#else
|
||||||
|
# if defined(__CLASSIC_C__)
|
||||||
|
int main(argc, argv) int argc; char *argv[];
|
||||||
|
# else
|
||||||
|
int main(int argc, char* argv[])
|
||||||
|
# endif
|
||||||
|
{
|
||||||
|
int require = 0;
|
||||||
|
require += info_compiler[argc];
|
||||||
|
require += info_platform[argc];
|
||||||
|
require += info_arch[argc];
|
||||||
|
#ifdef COMPILER_VERSION_MAJOR
|
||||||
|
require += info_version[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
require += info_version_internal[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
require += info_simulate[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
require += info_simulate_version[argc];
|
||||||
|
#endif
|
||||||
|
#if defined(__CRAYXE) || defined(__CRAYXC)
|
||||||
|
require += info_cray[argc];
|
||||||
|
#endif
|
||||||
|
require += info_language_dialect_default[argc];
|
||||||
|
(void)argv;
|
||||||
|
return require;
|
||||||
|
}
|
||||||
|
#endif
|
Binary file not shown.
|
@ -0,0 +1,16 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
# Relative path conversion top directories.
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/linus/ws/breakhack")
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/linus/ws/breakhack/build")
|
||||||
|
|
||||||
|
# Force unix paths in dependencies.
|
||||||
|
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||||
|
|
||||||
|
|
||||||
|
# The C and CXX include file regular expressions for this directory.
|
||||||
|
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||||
|
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||||
|
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||||
|
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
|
@ -0,0 +1,55 @@
|
||||||
|
Determining if the pthread_create exist failed with the following output:
|
||||||
|
Change Dir: /home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_b83fe/fast"
|
||||||
|
make[2]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_b83fe.dir/build.make CMakeFiles/cmTC_b83fe.dir/build
|
||||||
|
make[3]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_b83fe.dir/CheckSymbolExists.c.o
|
||||||
|
/usr/bin/cc -o CMakeFiles/cmTC_b83fe.dir/CheckSymbolExists.c.o -c /home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
|
||||||
|
Linking C executable cmTC_b83fe
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b83fe.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -rdynamic CMakeFiles/cmTC_b83fe.dir/CheckSymbolExists.c.o -o cmTC_b83fe
|
||||||
|
CMakeFiles/cmTC_b83fe.dir/CheckSymbolExists.c.o: In function `main':
|
||||||
|
CheckSymbolExists.c:(.text+0x1b): undefined reference to `pthread_create'
|
||||||
|
collect2: error: ld returned 1 exit status
|
||||||
|
make[3]: *** [CMakeFiles/cmTC_b83fe.dir/build.make:87: cmTC_b83fe] Error 1
|
||||||
|
make[3]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
make[2]: *** [Makefile:126: cmTC_b83fe/fast] Error 2
|
||||||
|
make[2]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
File /home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
|
||||||
|
/* */
|
||||||
|
#include <pthread.h>
|
||||||
|
|
||||||
|
int main(int argc, char** argv)
|
||||||
|
{
|
||||||
|
(void)argv;
|
||||||
|
#ifndef pthread_create
|
||||||
|
return ((int*)(&pthread_create))[argc];
|
||||||
|
#else
|
||||||
|
(void)argc;
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
Determining if the function pthread_create exists in the pthreads failed with the following output:
|
||||||
|
Change Dir: /home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_6c009/fast"
|
||||||
|
make[2]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_6c009.dir/build.make CMakeFiles/cmTC_6c009.dir/build
|
||||||
|
make[3]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_6c009.dir/CheckFunctionExists.c.o
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_6c009.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.11/Modules/CheckFunctionExists.c
|
||||||
|
Linking C executable cmTC_6c009
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6c009.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_6c009.dir/CheckFunctionExists.c.o -o cmTC_6c009 -lpthreads
|
||||||
|
/usr/bin/ld: cannot find -lpthreads
|
||||||
|
collect2: error: ld returned 1 exit status
|
||||||
|
make[3]: *** [CMakeFiles/cmTC_6c009.dir/build.make:87: cmTC_6c009] Error 1
|
||||||
|
make[3]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
make[2]: *** [Makefile:126: cmTC_6c009/fast] Error 2
|
||||||
|
make[2]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,231 @@
|
||||||
|
The system is: Linux - 4.16.7-1-ARCH - x86_64
|
||||||
|
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
|
||||||
|
Compiler: /usr/bin/cc
|
||||||
|
Build flags:
|
||||||
|
Id flags:
|
||||||
|
|
||||||
|
The output was:
|
||||||
|
0
|
||||||
|
|
||||||
|
|
||||||
|
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
|
||||||
|
|
||||||
|
The C compiler identification is GNU, found in "/home/linus/ws/breakhack/build/CMakeFiles/3.11.1/CompilerIdC/a.out"
|
||||||
|
|
||||||
|
Determining if the C compiler works passed with the following output:
|
||||||
|
Change Dir: /home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_00aaf/fast"
|
||||||
|
make[2]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_00aaf.dir/build.make CMakeFiles/cmTC_00aaf.dir/build
|
||||||
|
make[3]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_00aaf.dir/testCCompiler.c.o
|
||||||
|
/usr/bin/cc -o CMakeFiles/cmTC_00aaf.dir/testCCompiler.c.o -c /home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp/testCCompiler.c
|
||||||
|
Linking C executable cmTC_00aaf
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_00aaf.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -rdynamic CMakeFiles/cmTC_00aaf.dir/testCCompiler.c.o -o cmTC_00aaf
|
||||||
|
make[3]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
make[2]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
Detecting C compiler ABI info compiled with the following output:
|
||||||
|
Change Dir: /home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_bba03/fast"
|
||||||
|
make[2]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_bba03.dir/build.make CMakeFiles/cmTC_bba03.dir/build
|
||||||
|
make[3]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_bba03.dir/CMakeCCompilerABI.c.o
|
||||||
|
/usr/bin/cc -o CMakeFiles/cmTC_bba03.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.11/Modules/CMakeCCompilerABI.c
|
||||||
|
Linking C executable cmTC_bba03
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bba03.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_bba03.dir/CMakeCCompilerABI.c.o -o cmTC_bba03
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=/usr/bin/cc
|
||||||
|
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/lto-wrapper
|
||||||
|
Target: x86_64-pc-linux-gnu
|
||||||
|
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --enable-libmpx --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp
|
||||||
|
Thread model: posix
|
||||||
|
gcc version 8.1.0 (GCC)
|
||||||
|
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/
|
||||||
|
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../:/lib/:/usr/lib/
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_bba03' '-mtune=generic' '-march=x86-64'
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccdFsxEw.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_bba03 /usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../.. CMakeFiles/cmTC_bba03.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../../lib/crtn.o
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_bba03' '-mtune=generic' '-march=x86-64'
|
||||||
|
make[3]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
make[2]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
Parsed C implicit link information from above output:
|
||||||
|
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||||
|
ignore line: [Change Dir: /home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_bba03/fast"]
|
||||||
|
ignore line: [make[2]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp']
|
||||||
|
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_bba03.dir/build.make CMakeFiles/cmTC_bba03.dir/build]
|
||||||
|
ignore line: [make[3]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp']
|
||||||
|
ignore line: [Building C object CMakeFiles/cmTC_bba03.dir/CMakeCCompilerABI.c.o]
|
||||||
|
ignore line: [/usr/bin/cc -o CMakeFiles/cmTC_bba03.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.11/Modules/CMakeCCompilerABI.c]
|
||||||
|
ignore line: [Linking C executable cmTC_bba03]
|
||||||
|
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bba03.dir/link.txt --verbose=1]
|
||||||
|
ignore line: [/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_bba03.dir/CMakeCCompilerABI.c.o -o cmTC_bba03 ]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=/usr/bin/cc]
|
||||||
|
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/lto-wrapper]
|
||||||
|
ignore line: [Target: x86_64-pc-linux-gnu]
|
||||||
|
ignore line: [Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --enable-libmpx --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [gcc version 8.1.0 (GCC) ]
|
||||||
|
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
|
||||||
|
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../:/lib/:/usr/lib/]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_bba03' '-mtune=generic' '-march=x86-64']
|
||||||
|
link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccdFsxEw.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_bba03 /usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../.. CMakeFiles/cmTC_bba03.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../../lib/crtn.o]
|
||||||
|
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/collect2] ==> ignore
|
||||||
|
arg [-plugin] ==> ignore
|
||||||
|
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/liblto_plugin.so] ==> ignore
|
||||||
|
arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/lto-wrapper] ==> ignore
|
||||||
|
arg [-plugin-opt=-fresolution=/tmp/ccdFsxEw.res] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||||
|
arg [--build-id] ==> ignore
|
||||||
|
arg [--eh-frame-hdr] ==> ignore
|
||||||
|
arg [--hash-style=gnu] ==> ignore
|
||||||
|
arg [-m] ==> ignore
|
||||||
|
arg [elf_x86_64] ==> ignore
|
||||||
|
arg [-export-dynamic] ==> ignore
|
||||||
|
arg [-dynamic-linker] ==> ignore
|
||||||
|
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
|
||||||
|
arg [-pie] ==> ignore
|
||||||
|
arg [-o] ==> ignore
|
||||||
|
arg [cmTC_bba03] ==> ignore
|
||||||
|
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../../lib/Scrt1.o] ==> ignore
|
||||||
|
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../../lib/crti.o] ==> ignore
|
||||||
|
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/crtbeginS.o] ==> ignore
|
||||||
|
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0]
|
||||||
|
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../../lib]
|
||||||
|
arg [-L/lib/../lib] ==> dir [/lib/../lib]
|
||||||
|
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
|
||||||
|
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../..]
|
||||||
|
arg [CMakeFiles/cmTC_bba03.dir/CMakeCCompilerABI.c.o] ==> ignore
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [--as-needed] ==> ignore
|
||||||
|
arg [-lgcc_s] ==> lib [gcc_s]
|
||||||
|
arg [--no-as-needed] ==> ignore
|
||||||
|
arg [-lc] ==> lib [c]
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [--as-needed] ==> ignore
|
||||||
|
arg [-lgcc_s] ==> lib [gcc_s]
|
||||||
|
arg [--no-as-needed] ==> ignore
|
||||||
|
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/crtendS.o] ==> ignore
|
||||||
|
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../../lib/crtn.o] ==> ignore
|
||||||
|
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0]
|
||||||
|
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../../../lib] ==> [/usr/lib]
|
||||||
|
collapse library dir [/lib/../lib] ==> [/lib]
|
||||||
|
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
|
||||||
|
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0/../../..] ==> [/usr/lib]
|
||||||
|
implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
|
||||||
|
implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.0;/usr/lib;/lib]
|
||||||
|
implicit fwks: []
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Detecting C [-std=c11] compiler features compiled with the following output:
|
||||||
|
Change Dir: /home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_6a362/fast"
|
||||||
|
make[2]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_6a362.dir/build.make CMakeFiles/cmTC_6a362.dir/build
|
||||||
|
make[3]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_6a362.dir/feature_tests.c.o
|
||||||
|
/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_6a362.dir/feature_tests.c.o -c /home/linus/ws/breakhack/build/CMakeFiles/feature_tests.c
|
||||||
|
Linking C executable cmTC_6a362
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6a362.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -rdynamic CMakeFiles/cmTC_6a362.dir/feature_tests.c.o -o cmTC_6a362
|
||||||
|
make[3]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
make[2]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
Feature record: C_FEATURE:1c_function_prototypes
|
||||||
|
Feature record: C_FEATURE:1c_restrict
|
||||||
|
Feature record: C_FEATURE:1c_static_assert
|
||||||
|
Feature record: C_FEATURE:1c_variadic_macros
|
||||||
|
|
||||||
|
|
||||||
|
Detecting C [-std=c99] compiler features compiled with the following output:
|
||||||
|
Change Dir: /home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_a4c56/fast"
|
||||||
|
make[2]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_a4c56.dir/build.make CMakeFiles/cmTC_a4c56.dir/build
|
||||||
|
make[3]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_a4c56.dir/feature_tests.c.o
|
||||||
|
/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_a4c56.dir/feature_tests.c.o -c /home/linus/ws/breakhack/build/CMakeFiles/feature_tests.c
|
||||||
|
Linking C executable cmTC_a4c56
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a4c56.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -rdynamic CMakeFiles/cmTC_a4c56.dir/feature_tests.c.o -o cmTC_a4c56
|
||||||
|
make[3]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
make[2]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
Feature record: C_FEATURE:1c_function_prototypes
|
||||||
|
Feature record: C_FEATURE:1c_restrict
|
||||||
|
Feature record: C_FEATURE:0c_static_assert
|
||||||
|
Feature record: C_FEATURE:1c_variadic_macros
|
||||||
|
|
||||||
|
|
||||||
|
Detecting C [-std=c90] compiler features compiled with the following output:
|
||||||
|
Change Dir: /home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_bd8bc/fast"
|
||||||
|
make[2]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_bd8bc.dir/build.make CMakeFiles/cmTC_bd8bc.dir/build
|
||||||
|
make[3]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_bd8bc.dir/feature_tests.c.o
|
||||||
|
/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_bd8bc.dir/feature_tests.c.o -c /home/linus/ws/breakhack/build/CMakeFiles/feature_tests.c
|
||||||
|
Linking C executable cmTC_bd8bc
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bd8bc.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -rdynamic CMakeFiles/cmTC_bd8bc.dir/feature_tests.c.o -o cmTC_bd8bc
|
||||||
|
make[3]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
make[2]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
Feature record: C_FEATURE:1c_function_prototypes
|
||||||
|
Feature record: C_FEATURE:0c_restrict
|
||||||
|
Feature record: C_FEATURE:0c_static_assert
|
||||||
|
Feature record: C_FEATURE:0c_variadic_macros
|
||||||
|
Determining if the include file pthread.h exists passed with the following output:
|
||||||
|
Change Dir: /home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_61756/fast"
|
||||||
|
make[2]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_61756.dir/build.make CMakeFiles/cmTC_61756.dir/build
|
||||||
|
make[3]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_61756.dir/CheckIncludeFile.c.o
|
||||||
|
/usr/bin/cc -o CMakeFiles/cmTC_61756.dir/CheckIncludeFile.c.o -c /home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
|
||||||
|
Linking C executable cmTC_61756
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_61756.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -rdynamic CMakeFiles/cmTC_61756.dir/CheckIncludeFile.c.o -o cmTC_61756
|
||||||
|
make[3]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
make[2]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the function pthread_create exists in the pthread passed with the following output:
|
||||||
|
Change Dir: /home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/make" "cmTC_9a508/fast"
|
||||||
|
make[2]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
/usr/bin/make -f CMakeFiles/cmTC_9a508.dir/build.make CMakeFiles/cmTC_9a508.dir/build
|
||||||
|
make[3]: Entering directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_9a508.dir/CheckFunctionExists.c.o
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_9a508.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.11/Modules/CheckFunctionExists.c
|
||||||
|
Linking C executable cmTC_9a508
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9a508.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_9a508.dir/CheckFunctionExists.c.o -o cmTC_9a508 -lpthread
|
||||||
|
make[3]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
make[2]: Leaving directory '/home/linus/ws/breakhack/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
# Hashes of file build rules.
|
||||||
|
fa72cbe04f33389be3c64df6c3ae8004 CMakeFiles/assets_pack
|
||||||
|
0b0386046ef70e78d1b224cad1941216 CMakeFiles/data_pack
|
||||||
|
9b22d37090b22e7d2a24aede5968e57b CMakeFiles/lint
|
|
@ -0,0 +1,129 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
# The generator used is:
|
||||||
|
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
|
||||||
|
|
||||||
|
# The top level Makefile was generated from the following files:
|
||||||
|
set(CMAKE_MAKEFILE_DEPENDS
|
||||||
|
"CMakeCache.txt"
|
||||||
|
"../CMakeLists.txt"
|
||||||
|
"CMakeFiles/3.11.1/CMakeCCompiler.cmake"
|
||||||
|
"CMakeFiles/3.11.1/CMakeSystem.cmake"
|
||||||
|
"CMakeFiles/feature_tests.c"
|
||||||
|
"../cmake/FindCCache.cmake"
|
||||||
|
"../cmake/FindCMocka.cmake"
|
||||||
|
"../cmake/FindSDL2.cmake"
|
||||||
|
"../cmake/FindSDL2_image.cmake"
|
||||||
|
"../cmake/FindSDL2_mixer.cmake"
|
||||||
|
"../cmake/FindSDL2_ttf.cmake"
|
||||||
|
"../cmake/Findcppcheck.cmake"
|
||||||
|
"../src/config.h.in"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeCCompiler.cmake.in"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeCCompilerABI.c"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeCInformation.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeCommonLanguageInclude.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeCompilerIdDetection.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeConfigurableFile.in"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeDetermineCCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeDetermineCompileFeatures.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeDetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeDetermineCompilerABI.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeDetermineCompilerId.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeDetermineSystem.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeFindBinUtils.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeGenericSystem.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeInitializeConfigs.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeLanguageInformation.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeParseImplicitLinkInfo.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeSystem.cmake.in"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeSystemSpecificInformation.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeTestCCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeTestCompilerCommon.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CMakeUnixFindMake.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CPack.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CPackComponent.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CheckFunctionExists.c"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CheckIncludeFile.c.in"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CheckIncludeFile.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CheckLibraryExists.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/CheckSymbolExists.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/ADSP-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/Borland-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/Clang-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/Cray-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/GHS-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/GNU-C-FeatureTests.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/GNU-C.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/GNU-FindBinUtils.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/GNU.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/HP-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/IAR-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/Intel-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/MIPSpro-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/MSVC-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/PGI-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/PathScale-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/SCO-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/TI-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/Watcom-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/XL-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/FindLua.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/FindPackageHandleStandardArgs.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/FindPackageMessage.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/FindPhysFS.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/FindThreads.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/InstallRequiredSystemLibraries.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Internal/FeatureTesting.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Platform/Linux-GNU-C.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Platform/Linux-GNU.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Platform/Linux.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Modules/Platform/UnixPaths.cmake"
|
||||||
|
"/usr/share/cmake-3.11/Templates/CPackConfig.cmake.in"
|
||||||
|
)
|
||||||
|
|
||||||
|
# The corresponding makefile is:
|
||||||
|
set(CMAKE_MAKEFILE_OUTPUTS
|
||||||
|
"Makefile"
|
||||||
|
"CMakeFiles/cmake.check_cache"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Byproducts of CMake generate step:
|
||||||
|
set(CMAKE_MAKEFILE_PRODUCTS
|
||||||
|
"CMakeFiles/3.11.1/CMakeSystem.cmake"
|
||||||
|
"CMakeFiles/3.11.1/CMakeCCompiler.cmake"
|
||||||
|
"CMakeFiles/3.11.1/CMakeCCompiler.cmake"
|
||||||
|
"config.h"
|
||||||
|
"CPackConfig.cmake"
|
||||||
|
"CPackSourceConfig.cmake"
|
||||||
|
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Dependency information for all targets:
|
||||||
|
set(CMAKE_DEPEND_INFO_FILES
|
||||||
|
"CMakeFiles/data_pack.dir/DependInfo.cmake"
|
||||||
|
"CMakeFiles/breakhack.dir/DependInfo.cmake"
|
||||||
|
"CMakeFiles/test_linkedlist.dir/DependInfo.cmake"
|
||||||
|
"CMakeFiles/test_hashtable.dir/DependInfo.cmake"
|
||||||
|
"CMakeFiles/test_util.dir/DependInfo.cmake"
|
||||||
|
"CMakeFiles/lint.dir/DependInfo.cmake"
|
||||||
|
"CMakeFiles/assets_pack.dir/DependInfo.cmake"
|
||||||
|
)
|
|
@ -0,0 +1,325 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
# Default target executed when no arguments are given to make.
|
||||||
|
default_target: all
|
||||||
|
|
||||||
|
.PHONY : default_target
|
||||||
|
|
||||||
|
# The main recursive all target
|
||||||
|
all:
|
||||||
|
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# The main recursive preinstall target
|
||||||
|
preinstall:
|
||||||
|
|
||||||
|
.PHONY : preinstall
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
|
||||||
|
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||||
|
SUFFIXES =
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
|
||||||
|
# Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E remove -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/linus/ws/breakhack
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/linus/ws/breakhack/build
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/data_pack.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/data_pack.dir/all:
|
||||||
|
$(MAKE) -f CMakeFiles/data_pack.dir/build.make CMakeFiles/data_pack.dir/depend
|
||||||
|
$(MAKE) -f CMakeFiles/data_pack.dir/build.make CMakeFiles/data_pack.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num= "Built target data_pack"
|
||||||
|
.PHONY : CMakeFiles/data_pack.dir/all
|
||||||
|
|
||||||
|
# Include target in all.
|
||||||
|
all: CMakeFiles/data_pack.dir/all
|
||||||
|
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/data_pack.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/linus/ws/breakhack/build/CMakeFiles 0
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/data_pack.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/linus/ws/breakhack/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/data_pack.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
data_pack: CMakeFiles/data_pack.dir/rule
|
||||||
|
|
||||||
|
.PHONY : data_pack
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/data_pack.dir/clean:
|
||||||
|
$(MAKE) -f CMakeFiles/data_pack.dir/build.make CMakeFiles/data_pack.dir/clean
|
||||||
|
.PHONY : CMakeFiles/data_pack.dir/clean
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
clean: CMakeFiles/data_pack.dir/clean
|
||||||
|
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/breakhack.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/breakhack.dir/all:
|
||||||
|
$(MAKE) -f CMakeFiles/breakhack.dir/build.make CMakeFiles/breakhack.dir/depend
|
||||||
|
$(MAKE) -f CMakeFiles/breakhack.dir/build.make CMakeFiles/breakhack.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40 "Built target breakhack"
|
||||||
|
.PHONY : CMakeFiles/breakhack.dir/all
|
||||||
|
|
||||||
|
# Include target in all.
|
||||||
|
all: CMakeFiles/breakhack.dir/all
|
||||||
|
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/breakhack.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/linus/ws/breakhack/build/CMakeFiles 40
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/breakhack.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/linus/ws/breakhack/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/breakhack.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/rule
|
||||||
|
|
||||||
|
.PHONY : breakhack
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/breakhack.dir/clean:
|
||||||
|
$(MAKE) -f CMakeFiles/breakhack.dir/build.make CMakeFiles/breakhack.dir/clean
|
||||||
|
.PHONY : CMakeFiles/breakhack.dir/clean
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
clean: CMakeFiles/breakhack.dir/clean
|
||||||
|
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/test_linkedlist.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/test_linkedlist.dir/all:
|
||||||
|
$(MAKE) -f CMakeFiles/test_linkedlist.dir/build.make CMakeFiles/test_linkedlist.dir/depend
|
||||||
|
$(MAKE) -f CMakeFiles/test_linkedlist.dir/build.make CMakeFiles/test_linkedlist.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=46,47,48,49 "Built target test_linkedlist"
|
||||||
|
.PHONY : CMakeFiles/test_linkedlist.dir/all
|
||||||
|
|
||||||
|
# Include target in all.
|
||||||
|
all: CMakeFiles/test_linkedlist.dir/all
|
||||||
|
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/test_linkedlist.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/linus/ws/breakhack/build/CMakeFiles 4
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/test_linkedlist.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/linus/ws/breakhack/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/test_linkedlist.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
test_linkedlist: CMakeFiles/test_linkedlist.dir/rule
|
||||||
|
|
||||||
|
.PHONY : test_linkedlist
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/test_linkedlist.dir/clean:
|
||||||
|
$(MAKE) -f CMakeFiles/test_linkedlist.dir/build.make CMakeFiles/test_linkedlist.dir/clean
|
||||||
|
.PHONY : CMakeFiles/test_linkedlist.dir/clean
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
clean: CMakeFiles/test_linkedlist.dir/clean
|
||||||
|
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/test_hashtable.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/test_hashtable.dir/all:
|
||||||
|
$(MAKE) -f CMakeFiles/test_hashtable.dir/build.make CMakeFiles/test_hashtable.dir/depend
|
||||||
|
$(MAKE) -f CMakeFiles/test_hashtable.dir/build.make CMakeFiles/test_hashtable.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=42,43,44,45 "Built target test_hashtable"
|
||||||
|
.PHONY : CMakeFiles/test_hashtable.dir/all
|
||||||
|
|
||||||
|
# Include target in all.
|
||||||
|
all: CMakeFiles/test_hashtable.dir/all
|
||||||
|
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/test_hashtable.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/linus/ws/breakhack/build/CMakeFiles 4
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/test_hashtable.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/linus/ws/breakhack/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/test_hashtable.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
test_hashtable: CMakeFiles/test_hashtable.dir/rule
|
||||||
|
|
||||||
|
.PHONY : test_hashtable
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/test_hashtable.dir/clean:
|
||||||
|
$(MAKE) -f CMakeFiles/test_hashtable.dir/build.make CMakeFiles/test_hashtable.dir/clean
|
||||||
|
.PHONY : CMakeFiles/test_hashtable.dir/clean
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
clean: CMakeFiles/test_hashtable.dir/clean
|
||||||
|
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/test_util.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/test_util.dir/all:
|
||||||
|
$(MAKE) -f CMakeFiles/test_util.dir/build.make CMakeFiles/test_util.dir/depend
|
||||||
|
$(MAKE) -f CMakeFiles/test_util.dir/build.make CMakeFiles/test_util.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=50,51,52 "Built target test_util"
|
||||||
|
.PHONY : CMakeFiles/test_util.dir/all
|
||||||
|
|
||||||
|
# Include target in all.
|
||||||
|
all: CMakeFiles/test_util.dir/all
|
||||||
|
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/test_util.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/linus/ws/breakhack/build/CMakeFiles 3
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/test_util.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/linus/ws/breakhack/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/test_util.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
test_util: CMakeFiles/test_util.dir/rule
|
||||||
|
|
||||||
|
.PHONY : test_util
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/test_util.dir/clean:
|
||||||
|
$(MAKE) -f CMakeFiles/test_util.dir/build.make CMakeFiles/test_util.dir/clean
|
||||||
|
.PHONY : CMakeFiles/test_util.dir/clean
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
clean: CMakeFiles/test_util.dir/clean
|
||||||
|
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/lint.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/lint.dir/all:
|
||||||
|
$(MAKE) -f CMakeFiles/lint.dir/build.make CMakeFiles/lint.dir/depend
|
||||||
|
$(MAKE) -f CMakeFiles/lint.dir/build.make CMakeFiles/lint.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=41 "Built target lint"
|
||||||
|
.PHONY : CMakeFiles/lint.dir/all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/lint.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/linus/ws/breakhack/build/CMakeFiles 1
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/lint.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/linus/ws/breakhack/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/lint.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
lint: CMakeFiles/lint.dir/rule
|
||||||
|
|
||||||
|
.PHONY : lint
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/lint.dir/clean:
|
||||||
|
$(MAKE) -f CMakeFiles/lint.dir/build.make CMakeFiles/lint.dir/clean
|
||||||
|
.PHONY : CMakeFiles/lint.dir/clean
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
clean: CMakeFiles/lint.dir/clean
|
||||||
|
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/assets_pack.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/assets_pack.dir/all:
|
||||||
|
$(MAKE) -f CMakeFiles/assets_pack.dir/build.make CMakeFiles/assets_pack.dir/depend
|
||||||
|
$(MAKE) -f CMakeFiles/assets_pack.dir/build.make CMakeFiles/assets_pack.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num= "Built target assets_pack"
|
||||||
|
.PHONY : CMakeFiles/assets_pack.dir/all
|
||||||
|
|
||||||
|
# Include target in all.
|
||||||
|
all: CMakeFiles/assets_pack.dir/all
|
||||||
|
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/assets_pack.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/linus/ws/breakhack/build/CMakeFiles 0
|
||||||
|
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/assets_pack.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/linus/ws/breakhack/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/assets_pack.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
assets_pack: CMakeFiles/assets_pack.dir/rule
|
||||||
|
|
||||||
|
.PHONY : assets_pack
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/assets_pack.dir/clean:
|
||||||
|
$(MAKE) -f CMakeFiles/assets_pack.dir/build.make CMakeFiles/assets_pack.dir/clean
|
||||||
|
.PHONY : CMakeFiles/assets_pack.dir/clean
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
clean: CMakeFiles/assets_pack.dir/clean
|
||||||
|
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets to cleanup operation of make.
|
||||||
|
|
||||||
|
# Special rule to run CMake to check the build system integrity.
|
||||||
|
# No rule that depends on this can have commands that come from listfiles
|
||||||
|
# because they might be regenerated.
|
||||||
|
cmake_check_build_system:
|
||||||
|
$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||||
|
.PHONY : cmake_check_build_system
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
/home/linus/ws/breakhack/build/CMakeFiles/install/strip.dir
|
||||||
|
/home/linus/ws/breakhack/build/CMakeFiles/install.dir
|
||||||
|
/home/linus/ws/breakhack/build/CMakeFiles/list_install_components.dir
|
||||||
|
/home/linus/ws/breakhack/build/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/linus/ws/breakhack/build/CMakeFiles/package_source.dir
|
||||||
|
/home/linus/ws/breakhack/build/CMakeFiles/package.dir
|
||||||
|
/home/linus/ws/breakhack/build/CMakeFiles/install/local.dir
|
||||||
|
/home/linus/ws/breakhack/build/CMakeFiles/test.dir
|
||||||
|
/home/linus/ws/breakhack/build/CMakeFiles/data_pack.dir
|
||||||
|
/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir
|
||||||
|
/home/linus/ws/breakhack/build/CMakeFiles/test_linkedlist.dir
|
||||||
|
/home/linus/ws/breakhack/build/CMakeFiles/edit_cache.dir
|
||||||
|
/home/linus/ws/breakhack/build/CMakeFiles/test_hashtable.dir
|
||||||
|
/home/linus/ws/breakhack/build/CMakeFiles/test_util.dir
|
||||||
|
/home/linus/ws/breakhack/build/CMakeFiles/lint.dir
|
||||||
|
/home/linus/ws/breakhack/build/CMakeFiles/assets_pack.dir
|
|
@ -0,0 +1,11 @@
|
||||||
|
# The set of languages for which implicit dependencies are needed:
|
||||||
|
set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
)
|
||||||
|
# The set of files for implicit dependencies of each language:
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
|
@ -0,0 +1,76 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
# Delete rule output on recipe failure.
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
|
||||||
|
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||||
|
SUFFIXES =
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
|
||||||
|
# Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E remove -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/linus/ws/breakhack
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/linus/ws/breakhack/build
|
||||||
|
|
||||||
|
# Utility rule file for assets_pack.
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/assets_pack.dir/progress.make
|
||||||
|
|
||||||
|
CMakeFiles/assets_pack:
|
||||||
|
cd /home/linus/ws/breakhack/assets && /usr/bin/cmake -E tar -cf ../assets.pack --format=zip -- /home/linus/ws/breakhack/assets/Characters /home/linus/ws/breakhack/assets/Commissions /home/linus/ws/breakhack/assets/GUI /home/linus/ws/breakhack/assets/Items /home/linus/ws/breakhack/assets/Objects /home/linus/ws/breakhack/assets/Sounds /home/linus/ws/breakhack/assets/Extras
|
||||||
|
|
||||||
|
assets_pack: CMakeFiles/assets_pack
|
||||||
|
assets_pack: CMakeFiles/assets_pack.dir/build.make
|
||||||
|
|
||||||
|
.PHONY : assets_pack
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/assets_pack.dir/build: assets_pack
|
||||||
|
|
||||||
|
.PHONY : CMakeFiles/assets_pack.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/assets_pack.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/assets_pack.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/assets_pack.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/assets_pack.dir/depend:
|
||||||
|
cd /home/linus/ws/breakhack/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/linus/ws/breakhack /home/linus/ws/breakhack /home/linus/ws/breakhack/build /home/linus/ws/breakhack/build /home/linus/ws/breakhack/build/CMakeFiles/assets_pack.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : CMakeFiles/assets_pack.dir/depend
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/assets_pack"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang )
|
||||||
|
include(CMakeFiles/assets_pack.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
|
@ -0,0 +1 @@
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,60 @@
|
||||||
|
# The set of languages for which implicit dependencies are needed:
|
||||||
|
set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
"C"
|
||||||
|
)
|
||||||
|
# The set of files for implicit dependencies of each language:
|
||||||
|
set(CMAKE_DEPENDS_CHECK_C
|
||||||
|
"/home/linus/ws/breakhack/src/actiontext.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/actiontext.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/camera.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/camera.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/collisions.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/collisions.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/db.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/db.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/gui.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/gui.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/gui_button.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/gui_button.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/hashtable.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/hashtable.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/io_util.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/io_util.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/item.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/item.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/item_builder.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/item_builder.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/keyboard.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/keyboard.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/linkedlist.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/linkedlist.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/main.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/main.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/map.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/map.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/map_lua.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/map_lua.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/map_room_modifiers.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/map_room_modifiers.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/menu.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/menu.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/mixer.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/mixer.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/monster.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/monster.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/particle_engine.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/particle_engine.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/physfsrwops.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/physfsrwops.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/player.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/player.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/pointer.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/pointer.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/position.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/position.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/projectile.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/projectile.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/random.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/random.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/roommatrix.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/roommatrix.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/screenresolution.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/screenresolution.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/settings.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/settings.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/skill.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/skill.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/skillbar.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/skillbar.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/sprite.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/sprite.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/sqlite3.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/sqlite3.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/stats.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/stats.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/texture.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/texture.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/texturecache.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/texturecache.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/timer.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/timer.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/util.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/util.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/vector2d.c" "/home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/src/vector2d.c.o"
|
||||||
|
)
|
||||||
|
set(CMAKE_C_COMPILER_ID "GNU")
|
||||||
|
|
||||||
|
# The include file search paths:
|
||||||
|
set(CMAKE_C_TARGET_INCLUDE_PATH
|
||||||
|
"."
|
||||||
|
"/usr/include/SDL2"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
|
@ -0,0 +1,681 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
# Delete rule output on recipe failure.
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
|
||||||
|
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||||
|
SUFFIXES =
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
|
||||||
|
# Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E remove -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/linus/ws/breakhack
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/linus/ws/breakhack/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include CMakeFiles/breakhack.dir/depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/breakhack.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include CMakeFiles/breakhack.dir/flags.make
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/main.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/main.c.o: ../src/main.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/breakhack.dir/src/main.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/main.c.o -c /home/linus/ws/breakhack/src/main.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/main.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/main.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/main.c > CMakeFiles/breakhack.dir/src/main.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/main.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/main.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/main.c -o CMakeFiles/breakhack.dir/src/main.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/texture.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/texture.c.o: ../src/texture.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/breakhack.dir/src/texture.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/texture.c.o -c /home/linus/ws/breakhack/src/texture.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/texture.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/texture.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/texture.c > CMakeFiles/breakhack.dir/src/texture.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/texture.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/texture.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/texture.c -o CMakeFiles/breakhack.dir/src/texture.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/screenresolution.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/screenresolution.c.o: ../src/screenresolution.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/breakhack.dir/src/screenresolution.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/screenresolution.c.o -c /home/linus/ws/breakhack/src/screenresolution.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/screenresolution.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/screenresolution.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/screenresolution.c > CMakeFiles/breakhack.dir/src/screenresolution.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/screenresolution.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/screenresolution.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/screenresolution.c -o CMakeFiles/breakhack.dir/src/screenresolution.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/sprite.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/sprite.c.o: ../src/sprite.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/breakhack.dir/src/sprite.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/sprite.c.o -c /home/linus/ws/breakhack/src/sprite.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/sprite.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/sprite.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/sprite.c > CMakeFiles/breakhack.dir/src/sprite.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/sprite.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/sprite.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/sprite.c -o CMakeFiles/breakhack.dir/src/sprite.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/util.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/util.c.o: ../src/util.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/breakhack.dir/src/util.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/util.c.o -c /home/linus/ws/breakhack/src/util.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/util.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/util.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/util.c > CMakeFiles/breakhack.dir/src/util.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/util.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/util.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/util.c -o CMakeFiles/breakhack.dir/src/util.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/player.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/player.c.o: ../src/player.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/breakhack.dir/src/player.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/player.c.o -c /home/linus/ws/breakhack/src/player.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/player.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/player.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/player.c > CMakeFiles/breakhack.dir/src/player.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/player.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/player.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/player.c -o CMakeFiles/breakhack.dir/src/player.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/map.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/map.c.o: ../src/map.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/breakhack.dir/src/map.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/map.c.o -c /home/linus/ws/breakhack/src/map.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/map.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/map.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/map.c > CMakeFiles/breakhack.dir/src/map.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/map.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/map.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/map.c -o CMakeFiles/breakhack.dir/src/map.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/map_lua.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/map_lua.c.o: ../src/map_lua.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/breakhack.dir/src/map_lua.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/map_lua.c.o -c /home/linus/ws/breakhack/src/map_lua.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/map_lua.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/map_lua.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/map_lua.c > CMakeFiles/breakhack.dir/src/map_lua.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/map_lua.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/map_lua.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/map_lua.c -o CMakeFiles/breakhack.dir/src/map_lua.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/camera.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/camera.c.o: ../src/camera.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/breakhack.dir/src/camera.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/camera.c.o -c /home/linus/ws/breakhack/src/camera.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/camera.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/camera.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/camera.c > CMakeFiles/breakhack.dir/src/camera.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/camera.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/camera.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/camera.c -o CMakeFiles/breakhack.dir/src/camera.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/timer.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/timer.c.o: ../src/timer.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/breakhack.dir/src/timer.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/timer.c.o -c /home/linus/ws/breakhack/src/timer.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/timer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/timer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/timer.c > CMakeFiles/breakhack.dir/src/timer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/timer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/timer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/timer.c -o CMakeFiles/breakhack.dir/src/timer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/roommatrix.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/roommatrix.c.o: ../src/roommatrix.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/breakhack.dir/src/roommatrix.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/roommatrix.c.o -c /home/linus/ws/breakhack/src/roommatrix.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/roommatrix.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/roommatrix.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/roommatrix.c > CMakeFiles/breakhack.dir/src/roommatrix.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/roommatrix.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/roommatrix.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/roommatrix.c -o CMakeFiles/breakhack.dir/src/roommatrix.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/position.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/position.c.o: ../src/position.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/breakhack.dir/src/position.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/position.c.o -c /home/linus/ws/breakhack/src/position.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/position.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/position.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/position.c > CMakeFiles/breakhack.dir/src/position.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/position.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/position.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/position.c -o CMakeFiles/breakhack.dir/src/position.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/monster.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/monster.c.o: ../src/monster.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/breakhack.dir/src/monster.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/monster.c.o -c /home/linus/ws/breakhack/src/monster.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/monster.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/monster.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/monster.c > CMakeFiles/breakhack.dir/src/monster.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/monster.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/monster.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/monster.c -o CMakeFiles/breakhack.dir/src/monster.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/stats.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/stats.c.o: ../src/stats.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object CMakeFiles/breakhack.dir/src/stats.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/stats.c.o -c /home/linus/ws/breakhack/src/stats.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/stats.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/stats.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/stats.c > CMakeFiles/breakhack.dir/src/stats.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/stats.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/stats.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/stats.c -o CMakeFiles/breakhack.dir/src/stats.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/actiontext.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/actiontext.c.o: ../src/actiontext.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object CMakeFiles/breakhack.dir/src/actiontext.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/actiontext.c.o -c /home/linus/ws/breakhack/src/actiontext.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/actiontext.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/actiontext.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/actiontext.c > CMakeFiles/breakhack.dir/src/actiontext.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/actiontext.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/actiontext.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/actiontext.c -o CMakeFiles/breakhack.dir/src/actiontext.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/random.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/random.c.o: ../src/random.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object CMakeFiles/breakhack.dir/src/random.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/random.c.o -c /home/linus/ws/breakhack/src/random.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/random.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/random.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/random.c > CMakeFiles/breakhack.dir/src/random.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/random.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/random.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/random.c -o CMakeFiles/breakhack.dir/src/random.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/linkedlist.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/linkedlist.c.o: ../src/linkedlist.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building C object CMakeFiles/breakhack.dir/src/linkedlist.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/linkedlist.c.o -c /home/linus/ws/breakhack/src/linkedlist.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/linkedlist.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/linkedlist.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/linkedlist.c > CMakeFiles/breakhack.dir/src/linkedlist.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/linkedlist.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/linkedlist.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/linkedlist.c -o CMakeFiles/breakhack.dir/src/linkedlist.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/hashtable.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/hashtable.c.o: ../src/hashtable.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building C object CMakeFiles/breakhack.dir/src/hashtable.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/hashtable.c.o -c /home/linus/ws/breakhack/src/hashtable.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/hashtable.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/hashtable.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/hashtable.c > CMakeFiles/breakhack.dir/src/hashtable.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/hashtable.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/hashtable.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/hashtable.c -o CMakeFiles/breakhack.dir/src/hashtable.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/gui.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/gui.c.o: ../src/gui.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building C object CMakeFiles/breakhack.dir/src/gui.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/gui.c.o -c /home/linus/ws/breakhack/src/gui.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/gui.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/gui.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/gui.c > CMakeFiles/breakhack.dir/src/gui.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/gui.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/gui.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/gui.c -o CMakeFiles/breakhack.dir/src/gui.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/item.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/item.c.o: ../src/item.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Building C object CMakeFiles/breakhack.dir/src/item.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/item.c.o -c /home/linus/ws/breakhack/src/item.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/item.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/item.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/item.c > CMakeFiles/breakhack.dir/src/item.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/item.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/item.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/item.c -o CMakeFiles/breakhack.dir/src/item.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/item_builder.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/item_builder.c.o: ../src/item_builder.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Building C object CMakeFiles/breakhack.dir/src/item_builder.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/item_builder.c.o -c /home/linus/ws/breakhack/src/item_builder.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/item_builder.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/item_builder.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/item_builder.c > CMakeFiles/breakhack.dir/src/item_builder.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/item_builder.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/item_builder.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/item_builder.c -o CMakeFiles/breakhack.dir/src/item_builder.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/pointer.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/pointer.c.o: ../src/pointer.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Building C object CMakeFiles/breakhack.dir/src/pointer.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/pointer.c.o -c /home/linus/ws/breakhack/src/pointer.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/pointer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/pointer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/pointer.c > CMakeFiles/breakhack.dir/src/pointer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/pointer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/pointer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/pointer.c -o CMakeFiles/breakhack.dir/src/pointer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/gui_button.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/gui_button.c.o: ../src/gui_button.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Building C object CMakeFiles/breakhack.dir/src/gui_button.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/gui_button.c.o -c /home/linus/ws/breakhack/src/gui_button.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/gui_button.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/gui_button.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/gui_button.c > CMakeFiles/breakhack.dir/src/gui_button.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/gui_button.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/gui_button.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/gui_button.c -o CMakeFiles/breakhack.dir/src/gui_button.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/particle_engine.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/particle_engine.c.o: ../src/particle_engine.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Building C object CMakeFiles/breakhack.dir/src/particle_engine.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/particle_engine.c.o -c /home/linus/ws/breakhack/src/particle_engine.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/particle_engine.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/particle_engine.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/particle_engine.c > CMakeFiles/breakhack.dir/src/particle_engine.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/particle_engine.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/particle_engine.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/particle_engine.c -o CMakeFiles/breakhack.dir/src/particle_engine.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/menu.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/menu.c.o: ../src/menu.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Building C object CMakeFiles/breakhack.dir/src/menu.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/menu.c.o -c /home/linus/ws/breakhack/src/menu.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/menu.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/menu.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/menu.c > CMakeFiles/breakhack.dir/src/menu.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/menu.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/menu.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/menu.c -o CMakeFiles/breakhack.dir/src/menu.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/collisions.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/collisions.c.o: ../src/collisions.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Building C object CMakeFiles/breakhack.dir/src/collisions.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/collisions.c.o -c /home/linus/ws/breakhack/src/collisions.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/collisions.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/collisions.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/collisions.c > CMakeFiles/breakhack.dir/src/collisions.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/collisions.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/collisions.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/collisions.c -o CMakeFiles/breakhack.dir/src/collisions.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/keyboard.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/keyboard.c.o: ../src/keyboard.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Building C object CMakeFiles/breakhack.dir/src/keyboard.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/keyboard.c.o -c /home/linus/ws/breakhack/src/keyboard.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/keyboard.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/keyboard.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/keyboard.c > CMakeFiles/breakhack.dir/src/keyboard.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/keyboard.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/keyboard.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/keyboard.c -o CMakeFiles/breakhack.dir/src/keyboard.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/mixer.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/mixer.c.o: ../src/mixer.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Building C object CMakeFiles/breakhack.dir/src/mixer.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/mixer.c.o -c /home/linus/ws/breakhack/src/mixer.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/mixer.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/mixer.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/mixer.c > CMakeFiles/breakhack.dir/src/mixer.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/mixer.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/mixer.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/mixer.c -o CMakeFiles/breakhack.dir/src/mixer.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/io_util.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/io_util.c.o: ../src/io_util.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Building C object CMakeFiles/breakhack.dir/src/io_util.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/io_util.c.o -c /home/linus/ws/breakhack/src/io_util.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/io_util.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/io_util.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/io_util.c > CMakeFiles/breakhack.dir/src/io_util.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/io_util.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/io_util.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/io_util.c -o CMakeFiles/breakhack.dir/src/io_util.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/physfsrwops.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/physfsrwops.c.o: ../src/physfsrwops.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Building C object CMakeFiles/breakhack.dir/src/physfsrwops.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/physfsrwops.c.o -c /home/linus/ws/breakhack/src/physfsrwops.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/physfsrwops.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/physfsrwops.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/physfsrwops.c > CMakeFiles/breakhack.dir/src/physfsrwops.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/physfsrwops.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/physfsrwops.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/physfsrwops.c -o CMakeFiles/breakhack.dir/src/physfsrwops.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/skillbar.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/skillbar.c.o: ../src/skillbar.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Building C object CMakeFiles/breakhack.dir/src/skillbar.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/skillbar.c.o -c /home/linus/ws/breakhack/src/skillbar.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/skillbar.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/skillbar.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/skillbar.c > CMakeFiles/breakhack.dir/src/skillbar.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/skillbar.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/skillbar.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/skillbar.c -o CMakeFiles/breakhack.dir/src/skillbar.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/texturecache.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/texturecache.c.o: ../src/texturecache.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Building C object CMakeFiles/breakhack.dir/src/texturecache.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/texturecache.c.o -c /home/linus/ws/breakhack/src/texturecache.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/texturecache.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/texturecache.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/texturecache.c > CMakeFiles/breakhack.dir/src/texturecache.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/texturecache.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/texturecache.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/texturecache.c -o CMakeFiles/breakhack.dir/src/texturecache.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/skill.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/skill.c.o: ../src/skill.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_33) "Building C object CMakeFiles/breakhack.dir/src/skill.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/skill.c.o -c /home/linus/ws/breakhack/src/skill.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/skill.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/skill.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/skill.c > CMakeFiles/breakhack.dir/src/skill.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/skill.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/skill.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/skill.c -o CMakeFiles/breakhack.dir/src/skill.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/projectile.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/projectile.c.o: ../src/projectile.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_34) "Building C object CMakeFiles/breakhack.dir/src/projectile.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/projectile.c.o -c /home/linus/ws/breakhack/src/projectile.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/projectile.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/projectile.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/projectile.c > CMakeFiles/breakhack.dir/src/projectile.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/projectile.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/projectile.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/projectile.c -o CMakeFiles/breakhack.dir/src/projectile.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/vector2d.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/vector2d.c.o: ../src/vector2d.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_35) "Building C object CMakeFiles/breakhack.dir/src/vector2d.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/vector2d.c.o -c /home/linus/ws/breakhack/src/vector2d.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/vector2d.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/vector2d.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/vector2d.c > CMakeFiles/breakhack.dir/src/vector2d.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/vector2d.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/vector2d.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/vector2d.c -o CMakeFiles/breakhack.dir/src/vector2d.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/map_room_modifiers.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/map_room_modifiers.c.o: ../src/map_room_modifiers.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_36) "Building C object CMakeFiles/breakhack.dir/src/map_room_modifiers.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/map_room_modifiers.c.o -c /home/linus/ws/breakhack/src/map_room_modifiers.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/map_room_modifiers.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/map_room_modifiers.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/map_room_modifiers.c > CMakeFiles/breakhack.dir/src/map_room_modifiers.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/map_room_modifiers.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/map_room_modifiers.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/map_room_modifiers.c -o CMakeFiles/breakhack.dir/src/map_room_modifiers.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/sqlite3.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/sqlite3.c.o: ../src/sqlite3.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_37) "Building C object CMakeFiles/breakhack.dir/src/sqlite3.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -w -o CMakeFiles/breakhack.dir/src/sqlite3.c.o -c /home/linus/ws/breakhack/src/sqlite3.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/sqlite3.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/sqlite3.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -w -E /home/linus/ws/breakhack/src/sqlite3.c > CMakeFiles/breakhack.dir/src/sqlite3.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/sqlite3.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/sqlite3.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -w -S /home/linus/ws/breakhack/src/sqlite3.c -o CMakeFiles/breakhack.dir/src/sqlite3.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/db.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/db.c.o: ../src/db.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_38) "Building C object CMakeFiles/breakhack.dir/src/db.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/db.c.o -c /home/linus/ws/breakhack/src/db.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/db.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/db.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/db.c > CMakeFiles/breakhack.dir/src/db.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/db.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/db.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/db.c -o CMakeFiles/breakhack.dir/src/db.c.s
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/settings.c.o: CMakeFiles/breakhack.dir/flags.make
|
||||||
|
CMakeFiles/breakhack.dir/src/settings.c.o: ../src/settings.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_39) "Building C object CMakeFiles/breakhack.dir/src/settings.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/breakhack.dir/src/settings.c.o -c /home/linus/ws/breakhack/src/settings.c
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/settings.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/breakhack.dir/src/settings.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/settings.c > CMakeFiles/breakhack.dir/src/settings.c.i
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/src/settings.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/breakhack.dir/src/settings.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/settings.c -o CMakeFiles/breakhack.dir/src/settings.c.s
|
||||||
|
|
||||||
|
# Object files for target breakhack
|
||||||
|
breakhack_OBJECTS = \
|
||||||
|
"CMakeFiles/breakhack.dir/src/main.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/texture.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/screenresolution.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/sprite.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/util.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/player.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/map.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/map_lua.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/camera.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/timer.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/roommatrix.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/position.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/monster.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/stats.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/actiontext.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/random.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/linkedlist.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/hashtable.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/gui.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/item.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/item_builder.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/pointer.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/gui_button.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/particle_engine.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/menu.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/collisions.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/keyboard.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/mixer.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/io_util.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/physfsrwops.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/skillbar.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/texturecache.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/skill.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/projectile.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/vector2d.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/map_room_modifiers.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/sqlite3.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/db.c.o" \
|
||||||
|
"CMakeFiles/breakhack.dir/src/settings.c.o"
|
||||||
|
|
||||||
|
# External object files for target breakhack
|
||||||
|
breakhack_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/main.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/texture.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/screenresolution.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/sprite.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/util.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/player.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/map.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/map_lua.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/camera.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/timer.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/roommatrix.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/position.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/monster.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/stats.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/actiontext.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/random.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/linkedlist.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/hashtable.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/gui.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/item.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/item_builder.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/pointer.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/gui_button.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/particle_engine.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/menu.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/collisions.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/keyboard.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/mixer.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/io_util.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/physfsrwops.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/skillbar.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/texturecache.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/skill.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/projectile.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/vector2d.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/map_room_modifiers.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/sqlite3.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/db.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/src/settings.c.o
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/build.make
|
||||||
|
breakhack: /usr/lib/liblua5.3.so
|
||||||
|
breakhack: /usr/lib/libSDL2main.a
|
||||||
|
breakhack: /usr/lib/libSDL2.so
|
||||||
|
breakhack: /usr/lib/libSDL2main.a
|
||||||
|
breakhack: /usr/lib/libSDL2_image.so
|
||||||
|
breakhack: /usr/lib/libSDL2_ttf.so
|
||||||
|
breakhack: /usr/lib/libSDL2_mixer.so
|
||||||
|
breakhack: /usr/lib/libphysfs.so
|
||||||
|
breakhack: /usr/lib/libSDL2.so
|
||||||
|
breakhack: /usr/lib/libSDL2_image.so
|
||||||
|
breakhack: /usr/lib/libSDL2_ttf.so
|
||||||
|
breakhack: /usr/lib/libSDL2_mixer.so
|
||||||
|
breakhack: /usr/lib/libphysfs.so
|
||||||
|
breakhack: CMakeFiles/breakhack.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_40) "Linking C executable breakhack"
|
||||||
|
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/breakhack.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/breakhack.dir/build: breakhack
|
||||||
|
|
||||||
|
.PHONY : CMakeFiles/breakhack.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/breakhack.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/breakhack.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/breakhack.dir/depend:
|
||||||
|
cd /home/linus/ws/breakhack/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/linus/ws/breakhack /home/linus/ws/breakhack /home/linus/ws/breakhack/build /home/linus/ws/breakhack/build /home/linus/ws/breakhack/build/CMakeFiles/breakhack.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : CMakeFiles/breakhack.dir/depend
|
||||||
|
|
|
@ -0,0 +1,48 @@
|
||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/breakhack.dir/src/main.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/texture.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/screenresolution.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/sprite.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/util.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/player.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/map.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/map_lua.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/camera.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/timer.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/roommatrix.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/position.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/monster.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/stats.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/actiontext.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/random.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/linkedlist.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/hashtable.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/gui.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/item.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/item_builder.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/pointer.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/gui_button.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/particle_engine.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/menu.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/collisions.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/keyboard.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/mixer.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/io_util.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/physfsrwops.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/skillbar.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/texturecache.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/skill.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/projectile.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/vector2d.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/map_room_modifiers.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/sqlite3.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/db.c.o"
|
||||||
|
"CMakeFiles/breakhack.dir/src/settings.c.o"
|
||||||
|
"breakhack.pdb"
|
||||||
|
"breakhack"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang C)
|
||||||
|
include(CMakeFiles/breakhack.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,12 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
# compile C with /usr/bin/cc
|
||||||
|
C_FLAGS = -std=gnu11 -pedantic -Wall -Wextra -Wshadow -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wconversion -Wno-sign-conversion -static -static-libgcc -static-libstdc++
|
||||||
|
|
||||||
|
C_DEFINES =
|
||||||
|
|
||||||
|
C_INCLUDES = -I/home/linus/ws/breakhack/build -I/usr/include/SDL2
|
||||||
|
|
||||||
|
# Custom flags: CMakeFiles/breakhack.dir/src/sqlite3.c.o_FLAGS = -w
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
/usr/bin/ccache /usr/bin/cc -rdynamic CMakeFiles/breakhack.dir/src/main.c.o CMakeFiles/breakhack.dir/src/texture.c.o CMakeFiles/breakhack.dir/src/screenresolution.c.o CMakeFiles/breakhack.dir/src/sprite.c.o CMakeFiles/breakhack.dir/src/util.c.o CMakeFiles/breakhack.dir/src/player.c.o CMakeFiles/breakhack.dir/src/map.c.o CMakeFiles/breakhack.dir/src/map_lua.c.o CMakeFiles/breakhack.dir/src/camera.c.o CMakeFiles/breakhack.dir/src/timer.c.o CMakeFiles/breakhack.dir/src/roommatrix.c.o CMakeFiles/breakhack.dir/src/position.c.o CMakeFiles/breakhack.dir/src/monster.c.o CMakeFiles/breakhack.dir/src/stats.c.o CMakeFiles/breakhack.dir/src/actiontext.c.o CMakeFiles/breakhack.dir/src/random.c.o CMakeFiles/breakhack.dir/src/linkedlist.c.o CMakeFiles/breakhack.dir/src/hashtable.c.o CMakeFiles/breakhack.dir/src/gui.c.o CMakeFiles/breakhack.dir/src/item.c.o CMakeFiles/breakhack.dir/src/item_builder.c.o CMakeFiles/breakhack.dir/src/pointer.c.o CMakeFiles/breakhack.dir/src/gui_button.c.o CMakeFiles/breakhack.dir/src/particle_engine.c.o CMakeFiles/breakhack.dir/src/menu.c.o CMakeFiles/breakhack.dir/src/collisions.c.o CMakeFiles/breakhack.dir/src/keyboard.c.o CMakeFiles/breakhack.dir/src/mixer.c.o CMakeFiles/breakhack.dir/src/io_util.c.o CMakeFiles/breakhack.dir/src/physfsrwops.c.o CMakeFiles/breakhack.dir/src/skillbar.c.o CMakeFiles/breakhack.dir/src/texturecache.c.o CMakeFiles/breakhack.dir/src/skill.c.o CMakeFiles/breakhack.dir/src/projectile.c.o CMakeFiles/breakhack.dir/src/vector2d.c.o CMakeFiles/breakhack.dir/src/map_room_modifiers.c.o CMakeFiles/breakhack.dir/src/sqlite3.c.o CMakeFiles/breakhack.dir/src/db.c.o CMakeFiles/breakhack.dir/src/settings.c.o -o breakhack -ldl -llua5.3 -Wl,-Bstatic -lSDL2main -Wl,-Bdynamic -lSDL2 -lpthread -Wl,-Bstatic -lSDL2main -Wl,-Bdynamic -lSDL2_image -lSDL2_ttf -lSDL2_mixer -lphysfs -lSDL2 -lpthread -lSDL2_image -lSDL2_ttf -lSDL2_mixer -lphysfs
|
|
@ -0,0 +1,41 @@
|
||||||
|
CMAKE_PROGRESS_1 = 1
|
||||||
|
CMAKE_PROGRESS_2 = 2
|
||||||
|
CMAKE_PROGRESS_3 = 3
|
||||||
|
CMAKE_PROGRESS_4 = 4
|
||||||
|
CMAKE_PROGRESS_5 = 5
|
||||||
|
CMAKE_PROGRESS_6 = 6
|
||||||
|
CMAKE_PROGRESS_7 = 7
|
||||||
|
CMAKE_PROGRESS_8 = 8
|
||||||
|
CMAKE_PROGRESS_9 = 9
|
||||||
|
CMAKE_PROGRESS_10 = 10
|
||||||
|
CMAKE_PROGRESS_11 = 11
|
||||||
|
CMAKE_PROGRESS_12 = 12
|
||||||
|
CMAKE_PROGRESS_13 = 13
|
||||||
|
CMAKE_PROGRESS_14 = 14
|
||||||
|
CMAKE_PROGRESS_15 = 15
|
||||||
|
CMAKE_PROGRESS_16 = 16
|
||||||
|
CMAKE_PROGRESS_17 = 17
|
||||||
|
CMAKE_PROGRESS_18 = 18
|
||||||
|
CMAKE_PROGRESS_19 = 19
|
||||||
|
CMAKE_PROGRESS_20 = 20
|
||||||
|
CMAKE_PROGRESS_21 = 21
|
||||||
|
CMAKE_PROGRESS_22 = 22
|
||||||
|
CMAKE_PROGRESS_23 = 23
|
||||||
|
CMAKE_PROGRESS_24 = 24
|
||||||
|
CMAKE_PROGRESS_25 = 25
|
||||||
|
CMAKE_PROGRESS_26 = 26
|
||||||
|
CMAKE_PROGRESS_27 = 27
|
||||||
|
CMAKE_PROGRESS_28 = 28
|
||||||
|
CMAKE_PROGRESS_29 = 29
|
||||||
|
CMAKE_PROGRESS_30 = 30
|
||||||
|
CMAKE_PROGRESS_31 = 31
|
||||||
|
CMAKE_PROGRESS_32 = 32
|
||||||
|
CMAKE_PROGRESS_33 = 33
|
||||||
|
CMAKE_PROGRESS_34 = 34
|
||||||
|
CMAKE_PROGRESS_35 = 35
|
||||||
|
CMAKE_PROGRESS_36 = 36
|
||||||
|
CMAKE_PROGRESS_37 = 37
|
||||||
|
CMAKE_PROGRESS_38 = 38
|
||||||
|
CMAKE_PROGRESS_39 = 39
|
||||||
|
CMAKE_PROGRESS_40 = 40
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
|
@ -0,0 +1,11 @@
|
||||||
|
# The set of languages for which implicit dependencies are needed:
|
||||||
|
set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
)
|
||||||
|
# The set of files for implicit dependencies of each language:
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
|
@ -0,0 +1,76 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
# Delete rule output on recipe failure.
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
|
||||||
|
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||||
|
SUFFIXES =
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
|
||||||
|
# Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E remove -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/linus/ws/breakhack
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/linus/ws/breakhack/build
|
||||||
|
|
||||||
|
# Utility rule file for data_pack.
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/data_pack.dir/progress.make
|
||||||
|
|
||||||
|
CMakeFiles/data_pack:
|
||||||
|
cd /home/linus/ws/breakhack/data && /usr/bin/cmake -E tar -cf ../data.pack --format=zip -- mapgen.lua maproombuilder.lua menumapgen.lua monstergen.lua
|
||||||
|
|
||||||
|
data_pack: CMakeFiles/data_pack
|
||||||
|
data_pack: CMakeFiles/data_pack.dir/build.make
|
||||||
|
|
||||||
|
.PHONY : data_pack
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/data_pack.dir/build: data_pack
|
||||||
|
|
||||||
|
.PHONY : CMakeFiles/data_pack.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/data_pack.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/data_pack.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/data_pack.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/data_pack.dir/depend:
|
||||||
|
cd /home/linus/ws/breakhack/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/linus/ws/breakhack /home/linus/ws/breakhack /home/linus/ws/breakhack/build /home/linus/ws/breakhack/build /home/linus/ws/breakhack/build/CMakeFiles/data_pack.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : CMakeFiles/data_pack.dir/depend
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/data_pack"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang )
|
||||||
|
include(CMakeFiles/data_pack.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
|
@ -0,0 +1 @@
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,34 @@
|
||||||
|
|
||||||
|
const char features[] = {"\n"
|
||||||
|
"C_FEATURE:"
|
||||||
|
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304
|
||||||
|
"1"
|
||||||
|
#else
|
||||||
|
"0"
|
||||||
|
#endif
|
||||||
|
"c_function_prototypes\n"
|
||||||
|
"C_FEATURE:"
|
||||||
|
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
|
||||||
|
"1"
|
||||||
|
#else
|
||||||
|
"0"
|
||||||
|
#endif
|
||||||
|
"c_restrict\n"
|
||||||
|
"C_FEATURE:"
|
||||||
|
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L
|
||||||
|
"1"
|
||||||
|
#else
|
||||||
|
"0"
|
||||||
|
#endif
|
||||||
|
"c_static_assert\n"
|
||||||
|
"C_FEATURE:"
|
||||||
|
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
|
||||||
|
"1"
|
||||||
|
#else
|
||||||
|
"0"
|
||||||
|
#endif
|
||||||
|
"c_variadic_macros\n"
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
int main(int argc, char** argv) { (void)argv; return features[argc]; }
|
|
@ -0,0 +1,11 @@
|
||||||
|
# The set of languages for which implicit dependencies are needed:
|
||||||
|
set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
)
|
||||||
|
# The set of files for implicit dependencies of each language:
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
|
@ -0,0 +1,77 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
# Delete rule output on recipe failure.
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
|
||||||
|
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||||
|
SUFFIXES =
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
|
||||||
|
# Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E remove -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/linus/ws/breakhack
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/linus/ws/breakhack/build
|
||||||
|
|
||||||
|
# Utility rule file for lint.
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/lint.dir/progress.make
|
||||||
|
|
||||||
|
CMakeFiles/lint:
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Run cppcheck"
|
||||||
|
cd /home/linus/ws/breakhack && /usr/bin/cppcheck --force --language=c --template=gcc --error-exitcode=1 --quiet --enable=warning,style,performance,portability,information,missingInclude --suppress=*:src/sqlite3.? -isrc/sqlite3.c src/
|
||||||
|
|
||||||
|
lint: CMakeFiles/lint
|
||||||
|
lint: CMakeFiles/lint.dir/build.make
|
||||||
|
|
||||||
|
.PHONY : lint
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/lint.dir/build: lint
|
||||||
|
|
||||||
|
.PHONY : CMakeFiles/lint.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/lint.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/lint.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/lint.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/lint.dir/depend:
|
||||||
|
cd /home/linus/ws/breakhack/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/linus/ws/breakhack /home/linus/ws/breakhack /home/linus/ws/breakhack/build /home/linus/ws/breakhack/build /home/linus/ws/breakhack/build/CMakeFiles/lint.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : CMakeFiles/lint.dir/depend
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/lint"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang )
|
||||||
|
include(CMakeFiles/lint.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
|
@ -0,0 +1,2 @@
|
||||||
|
CMAKE_PROGRESS_1 = 41
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
51
|
|
@ -0,0 +1,78 @@
|
||||||
|
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
|
||||||
|
|
||||||
|
#IncludeRegexScan: ^.*$
|
||||||
|
|
||||||
|
#IncludeRegexComplain: ^$
|
||||||
|
|
||||||
|
#IncludeRegexTransform:
|
||||||
|
|
||||||
|
/home/linus/ws/breakhack/src/defines.h
|
||||||
|
config.h
|
||||||
|
/home/linus/ws/breakhack/src/config.h
|
||||||
|
|
||||||
|
/home/linus/ws/breakhack/src/hashtable.c
|
||||||
|
stdlib.h
|
||||||
|
-
|
||||||
|
stdio.h
|
||||||
|
-
|
||||||
|
string.h
|
||||||
|
-
|
||||||
|
limits.h
|
||||||
|
-
|
||||||
|
hashtable.h
|
||||||
|
/home/linus/ws/breakhack/src/hashtable.h
|
||||||
|
defines.h
|
||||||
|
/home/linus/ws/breakhack/src/defines.h
|
||||||
|
util.h
|
||||||
|
/home/linus/ws/breakhack/src/util.h
|
||||||
|
|
||||||
|
/home/linus/ws/breakhack/src/hashtable.h
|
||||||
|
|
||||||
|
/home/linus/ws/breakhack/src/util.c
|
||||||
|
stdio.h
|
||||||
|
-
|
||||||
|
stdlib.h
|
||||||
|
-
|
||||||
|
string.h
|
||||||
|
-
|
||||||
|
stdarg.h
|
||||||
|
-
|
||||||
|
time.h
|
||||||
|
-
|
||||||
|
ctype.h
|
||||||
|
-
|
||||||
|
defines.h
|
||||||
|
/home/linus/ws/breakhack/src/defines.h
|
||||||
|
unistd.h
|
||||||
|
-
|
||||||
|
util.h
|
||||||
|
/home/linus/ws/breakhack/src/util.h
|
||||||
|
|
||||||
|
/home/linus/ws/breakhack/src/util.h
|
||||||
|
stdio.h
|
||||||
|
-
|
||||||
|
stdlib.h
|
||||||
|
-
|
||||||
|
stdarg.h
|
||||||
|
-
|
||||||
|
|
||||||
|
/home/linus/ws/breakhack/test/test_hashtable.c
|
||||||
|
stdbool.h
|
||||||
|
-
|
||||||
|
stdio.h
|
||||||
|
-
|
||||||
|
stdarg.h
|
||||||
|
-
|
||||||
|
stddef.h
|
||||||
|
-
|
||||||
|
stdlib.h
|
||||||
|
-
|
||||||
|
setjmp.h
|
||||||
|
-
|
||||||
|
cmocka.h
|
||||||
|
-
|
||||||
|
../src/hashtable.h
|
||||||
|
/home/linus/ws/breakhack/src/hashtable.h
|
||||||
|
|
||||||
|
config.h
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
# The set of languages for which implicit dependencies are needed:
|
||||||
|
set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
"C"
|
||||||
|
)
|
||||||
|
# The set of files for implicit dependencies of each language:
|
||||||
|
set(CMAKE_DEPENDS_CHECK_C
|
||||||
|
"/home/linus/ws/breakhack/src/hashtable.c" "/home/linus/ws/breakhack/build/CMakeFiles/test_hashtable.dir/src/hashtable.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/util.c" "/home/linus/ws/breakhack/build/CMakeFiles/test_hashtable.dir/src/util.c.o"
|
||||||
|
"/home/linus/ws/breakhack/test/test_hashtable.c" "/home/linus/ws/breakhack/build/CMakeFiles/test_hashtable.dir/test/test_hashtable.c.o"
|
||||||
|
)
|
||||||
|
set(CMAKE_C_COMPILER_ID "GNU")
|
||||||
|
|
||||||
|
# The include file search paths:
|
||||||
|
set(CMAKE_C_TARGET_INCLUDE_PATH
|
||||||
|
"."
|
||||||
|
"/usr/include/SDL2"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
|
@ -0,0 +1,129 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
# Delete rule output on recipe failure.
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
|
||||||
|
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||||
|
SUFFIXES =
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
|
||||||
|
# Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E remove -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/linus/ws/breakhack
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/linus/ws/breakhack/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include CMakeFiles/test_hashtable.dir/depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/test_hashtable.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include CMakeFiles/test_hashtable.dir/flags.make
|
||||||
|
|
||||||
|
CMakeFiles/test_hashtable.dir/test/test_hashtable.c.o: CMakeFiles/test_hashtable.dir/flags.make
|
||||||
|
CMakeFiles/test_hashtable.dir/test/test_hashtable.c.o: ../test/test_hashtable.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/test_hashtable.dir/test/test_hashtable.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/test_hashtable.dir/test/test_hashtable.c.o -c /home/linus/ws/breakhack/test/test_hashtable.c
|
||||||
|
|
||||||
|
CMakeFiles/test_hashtable.dir/test/test_hashtable.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/test_hashtable.dir/test/test_hashtable.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/test/test_hashtable.c > CMakeFiles/test_hashtable.dir/test/test_hashtable.c.i
|
||||||
|
|
||||||
|
CMakeFiles/test_hashtable.dir/test/test_hashtable.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/test_hashtable.dir/test/test_hashtable.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/test/test_hashtable.c -o CMakeFiles/test_hashtable.dir/test/test_hashtable.c.s
|
||||||
|
|
||||||
|
CMakeFiles/test_hashtable.dir/src/hashtable.c.o: CMakeFiles/test_hashtable.dir/flags.make
|
||||||
|
CMakeFiles/test_hashtable.dir/src/hashtable.c.o: ../src/hashtable.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/test_hashtable.dir/src/hashtable.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/test_hashtable.dir/src/hashtable.c.o -c /home/linus/ws/breakhack/src/hashtable.c
|
||||||
|
|
||||||
|
CMakeFiles/test_hashtable.dir/src/hashtable.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/test_hashtable.dir/src/hashtable.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/hashtable.c > CMakeFiles/test_hashtable.dir/src/hashtable.c.i
|
||||||
|
|
||||||
|
CMakeFiles/test_hashtable.dir/src/hashtable.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/test_hashtable.dir/src/hashtable.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/hashtable.c -o CMakeFiles/test_hashtable.dir/src/hashtable.c.s
|
||||||
|
|
||||||
|
CMakeFiles/test_hashtable.dir/src/util.c.o: CMakeFiles/test_hashtable.dir/flags.make
|
||||||
|
CMakeFiles/test_hashtable.dir/src/util.c.o: ../src/util.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/test_hashtable.dir/src/util.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/test_hashtable.dir/src/util.c.o -c /home/linus/ws/breakhack/src/util.c
|
||||||
|
|
||||||
|
CMakeFiles/test_hashtable.dir/src/util.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/test_hashtable.dir/src/util.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/util.c > CMakeFiles/test_hashtable.dir/src/util.c.i
|
||||||
|
|
||||||
|
CMakeFiles/test_hashtable.dir/src/util.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/test_hashtable.dir/src/util.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/util.c -o CMakeFiles/test_hashtable.dir/src/util.c.s
|
||||||
|
|
||||||
|
# Object files for target test_hashtable
|
||||||
|
test_hashtable_OBJECTS = \
|
||||||
|
"CMakeFiles/test_hashtable.dir/test/test_hashtable.c.o" \
|
||||||
|
"CMakeFiles/test_hashtable.dir/src/hashtable.c.o" \
|
||||||
|
"CMakeFiles/test_hashtable.dir/src/util.c.o"
|
||||||
|
|
||||||
|
# External object files for target test_hashtable
|
||||||
|
test_hashtable_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
test_hashtable: CMakeFiles/test_hashtable.dir/test/test_hashtable.c.o
|
||||||
|
test_hashtable: CMakeFiles/test_hashtable.dir/src/hashtable.c.o
|
||||||
|
test_hashtable: CMakeFiles/test_hashtable.dir/src/util.c.o
|
||||||
|
test_hashtable: CMakeFiles/test_hashtable.dir/build.make
|
||||||
|
test_hashtable: /usr/lib/libcmocka.so
|
||||||
|
test_hashtable: CMakeFiles/test_hashtable.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking C executable test_hashtable"
|
||||||
|
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/test_hashtable.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/test_hashtable.dir/build: test_hashtable
|
||||||
|
|
||||||
|
.PHONY : CMakeFiles/test_hashtable.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/test_hashtable.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/test_hashtable.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/test_hashtable.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/test_hashtable.dir/depend:
|
||||||
|
cd /home/linus/ws/breakhack/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/linus/ws/breakhack /home/linus/ws/breakhack /home/linus/ws/breakhack/build /home/linus/ws/breakhack/build /home/linus/ws/breakhack/build/CMakeFiles/test_hashtable.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : CMakeFiles/test_hashtable.dir/depend
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/test_hashtable.dir/test/test_hashtable.c.o"
|
||||||
|
"CMakeFiles/test_hashtable.dir/src/hashtable.c.o"
|
||||||
|
"CMakeFiles/test_hashtable.dir/src/util.c.o"
|
||||||
|
"test_hashtable.pdb"
|
||||||
|
"test_hashtable"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang C)
|
||||||
|
include(CMakeFiles/test_hashtable.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
|
@ -0,0 +1,17 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
CMakeFiles/test_hashtable.dir/src/hashtable.c.o
|
||||||
|
/home/linus/ws/breakhack/src/defines.h
|
||||||
|
/home/linus/ws/breakhack/src/hashtable.c
|
||||||
|
/home/linus/ws/breakhack/src/hashtable.h
|
||||||
|
/home/linus/ws/breakhack/src/util.h
|
||||||
|
config.h
|
||||||
|
CMakeFiles/test_hashtable.dir/src/util.c.o
|
||||||
|
/home/linus/ws/breakhack/src/defines.h
|
||||||
|
/home/linus/ws/breakhack/src/util.c
|
||||||
|
/home/linus/ws/breakhack/src/util.h
|
||||||
|
config.h
|
||||||
|
CMakeFiles/test_hashtable.dir/test/test_hashtable.c.o
|
||||||
|
/home/linus/ws/breakhack/src/hashtable.h
|
||||||
|
/home/linus/ws/breakhack/test/test_hashtable.c
|
|
@ -0,0 +1,17 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
CMakeFiles/test_hashtable.dir/src/hashtable.c.o: ../src/defines.h
|
||||||
|
CMakeFiles/test_hashtable.dir/src/hashtable.c.o: ../src/hashtable.c
|
||||||
|
CMakeFiles/test_hashtable.dir/src/hashtable.c.o: ../src/hashtable.h
|
||||||
|
CMakeFiles/test_hashtable.dir/src/hashtable.c.o: ../src/util.h
|
||||||
|
CMakeFiles/test_hashtable.dir/src/hashtable.c.o: config.h
|
||||||
|
|
||||||
|
CMakeFiles/test_hashtable.dir/src/util.c.o: ../src/defines.h
|
||||||
|
CMakeFiles/test_hashtable.dir/src/util.c.o: ../src/util.c
|
||||||
|
CMakeFiles/test_hashtable.dir/src/util.c.o: ../src/util.h
|
||||||
|
CMakeFiles/test_hashtable.dir/src/util.c.o: config.h
|
||||||
|
|
||||||
|
CMakeFiles/test_hashtable.dir/test/test_hashtable.c.o: ../src/hashtable.h
|
||||||
|
CMakeFiles/test_hashtable.dir/test/test_hashtable.c.o: ../test/test_hashtable.c
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
# compile C with /usr/bin/cc
|
||||||
|
C_FLAGS = -std=gnu11 -pedantic -Wall -Wextra -Wshadow -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wconversion -Wno-sign-conversion -static -static-libgcc -static-libstdc++
|
||||||
|
|
||||||
|
C_DEFINES =
|
||||||
|
|
||||||
|
C_INCLUDES = -I/home/linus/ws/breakhack/build -I/usr/include/SDL2
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
/usr/bin/ccache /usr/bin/cc -rdynamic CMakeFiles/test_hashtable.dir/test/test_hashtable.c.o CMakeFiles/test_hashtable.dir/src/hashtable.c.o CMakeFiles/test_hashtable.dir/src/util.c.o -o test_hashtable -lcmocka -lpthread
|
|
@ -0,0 +1,5 @@
|
||||||
|
CMAKE_PROGRESS_1 = 42
|
||||||
|
CMAKE_PROGRESS_2 = 43
|
||||||
|
CMAKE_PROGRESS_3 = 44
|
||||||
|
CMAKE_PROGRESS_4 = 45
|
||||||
|
|
|
@ -0,0 +1,68 @@
|
||||||
|
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
|
||||||
|
|
||||||
|
#IncludeRegexScan: ^.*$
|
||||||
|
|
||||||
|
#IncludeRegexComplain: ^$
|
||||||
|
|
||||||
|
#IncludeRegexTransform:
|
||||||
|
|
||||||
|
/home/linus/ws/breakhack/src/defines.h
|
||||||
|
config.h
|
||||||
|
/home/linus/ws/breakhack/src/config.h
|
||||||
|
|
||||||
|
/home/linus/ws/breakhack/src/linkedlist.c
|
||||||
|
stdio.h
|
||||||
|
-
|
||||||
|
stdlib.h
|
||||||
|
-
|
||||||
|
linkedlist.h
|
||||||
|
/home/linus/ws/breakhack/src/linkedlist.h
|
||||||
|
util.h
|
||||||
|
/home/linus/ws/breakhack/src/util.h
|
||||||
|
|
||||||
|
/home/linus/ws/breakhack/src/linkedlist.h
|
||||||
|
|
||||||
|
/home/linus/ws/breakhack/src/util.c
|
||||||
|
stdio.h
|
||||||
|
-
|
||||||
|
stdlib.h
|
||||||
|
-
|
||||||
|
string.h
|
||||||
|
-
|
||||||
|
stdarg.h
|
||||||
|
-
|
||||||
|
time.h
|
||||||
|
-
|
||||||
|
ctype.h
|
||||||
|
-
|
||||||
|
defines.h
|
||||||
|
/home/linus/ws/breakhack/src/defines.h
|
||||||
|
unistd.h
|
||||||
|
-
|
||||||
|
util.h
|
||||||
|
/home/linus/ws/breakhack/src/util.h
|
||||||
|
|
||||||
|
/home/linus/ws/breakhack/src/util.h
|
||||||
|
stdio.h
|
||||||
|
-
|
||||||
|
stdlib.h
|
||||||
|
-
|
||||||
|
stdarg.h
|
||||||
|
-
|
||||||
|
|
||||||
|
/home/linus/ws/breakhack/test/test_linkedlist.c
|
||||||
|
stdarg.h
|
||||||
|
-
|
||||||
|
stddef.h
|
||||||
|
-
|
||||||
|
stdlib.h
|
||||||
|
-
|
||||||
|
setjmp.h
|
||||||
|
-
|
||||||
|
cmocka.h
|
||||||
|
-
|
||||||
|
../src/linkedlist.h
|
||||||
|
/home/linus/ws/breakhack/src/linkedlist.h
|
||||||
|
|
||||||
|
config.h
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
# The set of languages for which implicit dependencies are needed:
|
||||||
|
set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
"C"
|
||||||
|
)
|
||||||
|
# The set of files for implicit dependencies of each language:
|
||||||
|
set(CMAKE_DEPENDS_CHECK_C
|
||||||
|
"/home/linus/ws/breakhack/src/linkedlist.c" "/home/linus/ws/breakhack/build/CMakeFiles/test_linkedlist.dir/src/linkedlist.c.o"
|
||||||
|
"/home/linus/ws/breakhack/src/util.c" "/home/linus/ws/breakhack/build/CMakeFiles/test_linkedlist.dir/src/util.c.o"
|
||||||
|
"/home/linus/ws/breakhack/test/test_linkedlist.c" "/home/linus/ws/breakhack/build/CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.o"
|
||||||
|
)
|
||||||
|
set(CMAKE_C_COMPILER_ID "GNU")
|
||||||
|
|
||||||
|
# The include file search paths:
|
||||||
|
set(CMAKE_C_TARGET_INCLUDE_PATH
|
||||||
|
"."
|
||||||
|
"/usr/include/SDL2"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
|
@ -0,0 +1,129 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
# Delete rule output on recipe failure.
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
|
||||||
|
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||||
|
SUFFIXES =
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
|
||||||
|
# Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E remove -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/linus/ws/breakhack
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/linus/ws/breakhack/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include CMakeFiles/test_linkedlist.dir/depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/test_linkedlist.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include CMakeFiles/test_linkedlist.dir/flags.make
|
||||||
|
|
||||||
|
CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.o: CMakeFiles/test_linkedlist.dir/flags.make
|
||||||
|
CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.o: ../test/test_linkedlist.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.o -c /home/linus/ws/breakhack/test/test_linkedlist.c
|
||||||
|
|
||||||
|
CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/test/test_linkedlist.c > CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.i
|
||||||
|
|
||||||
|
CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/test/test_linkedlist.c -o CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.s
|
||||||
|
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/linkedlist.c.o: CMakeFiles/test_linkedlist.dir/flags.make
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/linkedlist.c.o: ../src/linkedlist.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/test_linkedlist.dir/src/linkedlist.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/test_linkedlist.dir/src/linkedlist.c.o -c /home/linus/ws/breakhack/src/linkedlist.c
|
||||||
|
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/linkedlist.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/test_linkedlist.dir/src/linkedlist.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/linkedlist.c > CMakeFiles/test_linkedlist.dir/src/linkedlist.c.i
|
||||||
|
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/linkedlist.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/test_linkedlist.dir/src/linkedlist.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/linkedlist.c -o CMakeFiles/test_linkedlist.dir/src/linkedlist.c.s
|
||||||
|
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/util.c.o: CMakeFiles/test_linkedlist.dir/flags.make
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/util.c.o: ../src/util.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/test_linkedlist.dir/src/util.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/test_linkedlist.dir/src/util.c.o -c /home/linus/ws/breakhack/src/util.c
|
||||||
|
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/util.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/test_linkedlist.dir/src/util.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/util.c > CMakeFiles/test_linkedlist.dir/src/util.c.i
|
||||||
|
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/util.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/test_linkedlist.dir/src/util.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/util.c -o CMakeFiles/test_linkedlist.dir/src/util.c.s
|
||||||
|
|
||||||
|
# Object files for target test_linkedlist
|
||||||
|
test_linkedlist_OBJECTS = \
|
||||||
|
"CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.o" \
|
||||||
|
"CMakeFiles/test_linkedlist.dir/src/linkedlist.c.o" \
|
||||||
|
"CMakeFiles/test_linkedlist.dir/src/util.c.o"
|
||||||
|
|
||||||
|
# External object files for target test_linkedlist
|
||||||
|
test_linkedlist_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
test_linkedlist: CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.o
|
||||||
|
test_linkedlist: CMakeFiles/test_linkedlist.dir/src/linkedlist.c.o
|
||||||
|
test_linkedlist: CMakeFiles/test_linkedlist.dir/src/util.c.o
|
||||||
|
test_linkedlist: CMakeFiles/test_linkedlist.dir/build.make
|
||||||
|
test_linkedlist: /usr/lib/libcmocka.so
|
||||||
|
test_linkedlist: CMakeFiles/test_linkedlist.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking C executable test_linkedlist"
|
||||||
|
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/test_linkedlist.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/test_linkedlist.dir/build: test_linkedlist
|
||||||
|
|
||||||
|
.PHONY : CMakeFiles/test_linkedlist.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/test_linkedlist.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/test_linkedlist.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/test_linkedlist.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/test_linkedlist.dir/depend:
|
||||||
|
cd /home/linus/ws/breakhack/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/linus/ws/breakhack /home/linus/ws/breakhack /home/linus/ws/breakhack/build /home/linus/ws/breakhack/build /home/linus/ws/breakhack/build/CMakeFiles/test_linkedlist.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : CMakeFiles/test_linkedlist.dir/depend
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.o"
|
||||||
|
"CMakeFiles/test_linkedlist.dir/src/linkedlist.c.o"
|
||||||
|
"CMakeFiles/test_linkedlist.dir/src/util.c.o"
|
||||||
|
"test_linkedlist.pdb"
|
||||||
|
"test_linkedlist"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang C)
|
||||||
|
include(CMakeFiles/test_linkedlist.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
|
@ -0,0 +1,15 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/linkedlist.c.o
|
||||||
|
/home/linus/ws/breakhack/src/linkedlist.c
|
||||||
|
/home/linus/ws/breakhack/src/linkedlist.h
|
||||||
|
/home/linus/ws/breakhack/src/util.h
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/util.c.o
|
||||||
|
/home/linus/ws/breakhack/src/defines.h
|
||||||
|
/home/linus/ws/breakhack/src/util.c
|
||||||
|
/home/linus/ws/breakhack/src/util.h
|
||||||
|
config.h
|
||||||
|
CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.o
|
||||||
|
/home/linus/ws/breakhack/src/linkedlist.h
|
||||||
|
/home/linus/ws/breakhack/test/test_linkedlist.c
|
|
@ -0,0 +1,15 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/linkedlist.c.o: ../src/linkedlist.c
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/linkedlist.c.o: ../src/linkedlist.h
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/linkedlist.c.o: ../src/util.h
|
||||||
|
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/util.c.o: ../src/defines.h
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/util.c.o: ../src/util.c
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/util.c.o: ../src/util.h
|
||||||
|
CMakeFiles/test_linkedlist.dir/src/util.c.o: config.h
|
||||||
|
|
||||||
|
CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.o: ../src/linkedlist.h
|
||||||
|
CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.o: ../test/test_linkedlist.c
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
# compile C with /usr/bin/cc
|
||||||
|
C_FLAGS = -std=gnu11 -pedantic -Wall -Wextra -Wshadow -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wconversion -Wno-sign-conversion -static -static-libgcc -static-libstdc++
|
||||||
|
|
||||||
|
C_DEFINES =
|
||||||
|
|
||||||
|
C_INCLUDES = -I/home/linus/ws/breakhack/build -I/usr/include/SDL2
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
/usr/bin/ccache /usr/bin/cc -rdynamic CMakeFiles/test_linkedlist.dir/test/test_linkedlist.c.o CMakeFiles/test_linkedlist.dir/src/linkedlist.c.o CMakeFiles/test_linkedlist.dir/src/util.c.o -o test_linkedlist -lcmocka -lpthread
|
|
@ -0,0 +1,5 @@
|
||||||
|
CMAKE_PROGRESS_1 = 46
|
||||||
|
CMAKE_PROGRESS_2 = 47
|
||||||
|
CMAKE_PROGRESS_3 = 48
|
||||||
|
CMAKE_PROGRESS_4 = 49
|
||||||
|
|
|
@ -0,0 +1,56 @@
|
||||||
|
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
|
||||||
|
|
||||||
|
#IncludeRegexScan: ^.*$
|
||||||
|
|
||||||
|
#IncludeRegexComplain: ^$
|
||||||
|
|
||||||
|
#IncludeRegexTransform:
|
||||||
|
|
||||||
|
/home/linus/ws/breakhack/src/defines.h
|
||||||
|
config.h
|
||||||
|
/home/linus/ws/breakhack/src/config.h
|
||||||
|
|
||||||
|
/home/linus/ws/breakhack/src/util.c
|
||||||
|
stdio.h
|
||||||
|
-
|
||||||
|
stdlib.h
|
||||||
|
-
|
||||||
|
string.h
|
||||||
|
-
|
||||||
|
stdarg.h
|
||||||
|
-
|
||||||
|
time.h
|
||||||
|
-
|
||||||
|
ctype.h
|
||||||
|
-
|
||||||
|
defines.h
|
||||||
|
/home/linus/ws/breakhack/src/defines.h
|
||||||
|
unistd.h
|
||||||
|
-
|
||||||
|
util.h
|
||||||
|
/home/linus/ws/breakhack/src/util.h
|
||||||
|
|
||||||
|
/home/linus/ws/breakhack/src/util.h
|
||||||
|
stdio.h
|
||||||
|
-
|
||||||
|
stdlib.h
|
||||||
|
-
|
||||||
|
stdarg.h
|
||||||
|
-
|
||||||
|
|
||||||
|
/home/linus/ws/breakhack/test/test_util.c
|
||||||
|
stdlib.h
|
||||||
|
-
|
||||||
|
stdarg.h
|
||||||
|
-
|
||||||
|
stddef.h
|
||||||
|
-
|
||||||
|
setjmp.h
|
||||||
|
-
|
||||||
|
cmocka.h
|
||||||
|
-
|
||||||
|
../src/util.h
|
||||||
|
/home/linus/ws/breakhack/src/util.h
|
||||||
|
|
||||||
|
config.h
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
# The set of languages for which implicit dependencies are needed:
|
||||||
|
set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
"C"
|
||||||
|
)
|
||||||
|
# The set of files for implicit dependencies of each language:
|
||||||
|
set(CMAKE_DEPENDS_CHECK_C
|
||||||
|
"/home/linus/ws/breakhack/src/util.c" "/home/linus/ws/breakhack/build/CMakeFiles/test_util.dir/src/util.c.o"
|
||||||
|
"/home/linus/ws/breakhack/test/test_util.c" "/home/linus/ws/breakhack/build/CMakeFiles/test_util.dir/test/test_util.c.o"
|
||||||
|
)
|
||||||
|
set(CMAKE_C_COMPILER_ID "GNU")
|
||||||
|
|
||||||
|
# The include file search paths:
|
||||||
|
set(CMAKE_C_TARGET_INCLUDE_PATH
|
||||||
|
"."
|
||||||
|
"/usr/include/SDL2"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
|
@ -0,0 +1,114 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
# Delete rule output on recipe failure.
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
|
||||||
|
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||||
|
SUFFIXES =
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
|
||||||
|
# Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E remove -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/linus/ws/breakhack
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/linus/ws/breakhack/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include CMakeFiles/test_util.dir/depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/test_util.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include CMakeFiles/test_util.dir/flags.make
|
||||||
|
|
||||||
|
CMakeFiles/test_util.dir/test/test_util.c.o: CMakeFiles/test_util.dir/flags.make
|
||||||
|
CMakeFiles/test_util.dir/test/test_util.c.o: ../test/test_util.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/test_util.dir/test/test_util.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/test_util.dir/test/test_util.c.o -c /home/linus/ws/breakhack/test/test_util.c
|
||||||
|
|
||||||
|
CMakeFiles/test_util.dir/test/test_util.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/test_util.dir/test/test_util.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/test/test_util.c > CMakeFiles/test_util.dir/test/test_util.c.i
|
||||||
|
|
||||||
|
CMakeFiles/test_util.dir/test/test_util.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/test_util.dir/test/test_util.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/test/test_util.c -o CMakeFiles/test_util.dir/test/test_util.c.s
|
||||||
|
|
||||||
|
CMakeFiles/test_util.dir/src/util.c.o: CMakeFiles/test_util.dir/flags.make
|
||||||
|
CMakeFiles/test_util.dir/src/util.c.o: ../src/util.c
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/test_util.dir/src/util.c.o"
|
||||||
|
/usr/bin/ccache /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/test_util.dir/src/util.c.o -c /home/linus/ws/breakhack/src/util.c
|
||||||
|
|
||||||
|
CMakeFiles/test_util.dir/src/util.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/test_util.dir/src/util.c.i"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/linus/ws/breakhack/src/util.c > CMakeFiles/test_util.dir/src/util.c.i
|
||||||
|
|
||||||
|
CMakeFiles/test_util.dir/src/util.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/test_util.dir/src/util.c.s"
|
||||||
|
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/linus/ws/breakhack/src/util.c -o CMakeFiles/test_util.dir/src/util.c.s
|
||||||
|
|
||||||
|
# Object files for target test_util
|
||||||
|
test_util_OBJECTS = \
|
||||||
|
"CMakeFiles/test_util.dir/test/test_util.c.o" \
|
||||||
|
"CMakeFiles/test_util.dir/src/util.c.o"
|
||||||
|
|
||||||
|
# External object files for target test_util
|
||||||
|
test_util_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
test_util: CMakeFiles/test_util.dir/test/test_util.c.o
|
||||||
|
test_util: CMakeFiles/test_util.dir/src/util.c.o
|
||||||
|
test_util: CMakeFiles/test_util.dir/build.make
|
||||||
|
test_util: /usr/lib/libcmocka.so
|
||||||
|
test_util: CMakeFiles/test_util.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/linus/ws/breakhack/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C executable test_util"
|
||||||
|
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/test_util.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/test_util.dir/build: test_util
|
||||||
|
|
||||||
|
.PHONY : CMakeFiles/test_util.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/test_util.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/test_util.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/test_util.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/test_util.dir/depend:
|
||||||
|
cd /home/linus/ws/breakhack/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/linus/ws/breakhack /home/linus/ws/breakhack /home/linus/ws/breakhack/build /home/linus/ws/breakhack/build /home/linus/ws/breakhack/build/CMakeFiles/test_util.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : CMakeFiles/test_util.dir/depend
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/test_util.dir/test/test_util.c.o"
|
||||||
|
"CMakeFiles/test_util.dir/src/util.c.o"
|
||||||
|
"test_util.pdb"
|
||||||
|
"test_util"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang C)
|
||||||
|
include(CMakeFiles/test_util.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
|
@ -0,0 +1,11 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
CMakeFiles/test_util.dir/src/util.c.o
|
||||||
|
/home/linus/ws/breakhack/src/defines.h
|
||||||
|
/home/linus/ws/breakhack/src/util.c
|
||||||
|
/home/linus/ws/breakhack/src/util.h
|
||||||
|
config.h
|
||||||
|
CMakeFiles/test_util.dir/test/test_util.c.o
|
||||||
|
/home/linus/ws/breakhack/src/util.h
|
||||||
|
/home/linus/ws/breakhack/test/test_util.c
|
|
@ -0,0 +1,11 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
CMakeFiles/test_util.dir/src/util.c.o: ../src/defines.h
|
||||||
|
CMakeFiles/test_util.dir/src/util.c.o: ../src/util.c
|
||||||
|
CMakeFiles/test_util.dir/src/util.c.o: ../src/util.h
|
||||||
|
CMakeFiles/test_util.dir/src/util.c.o: config.h
|
||||||
|
|
||||||
|
CMakeFiles/test_util.dir/test/test_util.c.o: ../src/util.h
|
||||||
|
CMakeFiles/test_util.dir/test/test_util.c.o: ../test/test_util.c
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.11
|
||||||
|
|
||||||
|
# compile C with /usr/bin/cc
|
||||||
|
C_FLAGS = -std=gnu11 -pedantic -Wall -Wextra -Wshadow -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wconversion -Wno-sign-conversion -static -static-libgcc -static-libstdc++
|
||||||
|
|
||||||
|
C_DEFINES =
|
||||||
|
|
||||||
|
C_INCLUDES = -I/home/linus/ws/breakhack/build -I/usr/include/SDL2
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
/usr/bin/ccache /usr/bin/cc -rdynamic CMakeFiles/test_util.dir/test/test_util.c.o CMakeFiles/test_util.dir/src/util.c.o -o test_util -lcmocka -lpthread
|
|
@ -0,0 +1,4 @@
|
||||||
|
CMAKE_PROGRESS_1 = 50
|
||||||
|
CMAKE_PROGRESS_2 = 51
|
||||||
|
CMAKE_PROGRESS_3 = 52
|
||||||
|
|
|
@ -0,0 +1,87 @@
|
||||||
|
# This file will be configured to contain variables for CPack. These variables
|
||||||
|
# should be set in the CMake list file of the project before CPack module is
|
||||||
|
# included. The list of available CPACK_xxx variables and their associated
|
||||||
|
# documentation may be obtained using
|
||||||
|
# cpack --help-variable-list
|
||||||
|
#
|
||||||
|
# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME)
|
||||||
|
# and some are specific to a generator
|
||||||
|
# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables
|
||||||
|
# usually begin with CPACK_<GENNAME>_xxxx.
|
||||||
|
|
||||||
|
|
||||||
|
set(CPACK_BINARY_7Z "")
|
||||||
|
set(CPACK_BINARY_BUNDLE "")
|
||||||
|
set(CPACK_BINARY_CYGWIN "")
|
||||||
|
set(CPACK_BINARY_DEB "")
|
||||||
|
set(CPACK_BINARY_DRAGNDROP "")
|
||||||
|
set(CPACK_BINARY_FREEBSD "")
|
||||||
|
set(CPACK_BINARY_IFW "")
|
||||||
|
set(CPACK_BINARY_NSIS "")
|
||||||
|
set(CPACK_BINARY_OSXX11 "")
|
||||||
|
set(CPACK_BINARY_PACKAGEMAKER "")
|
||||||
|
set(CPACK_BINARY_PRODUCTBUILD "")
|
||||||
|
set(CPACK_BINARY_RPM "")
|
||||||
|
set(CPACK_BINARY_STGZ "")
|
||||||
|
set(CPACK_BINARY_TBZ2 "")
|
||||||
|
set(CPACK_BINARY_TGZ "")
|
||||||
|
set(CPACK_BINARY_TXZ "")
|
||||||
|
set(CPACK_BINARY_TZ "")
|
||||||
|
set(CPACK_BINARY_WIX "")
|
||||||
|
set(CPACK_BINARY_ZIP "")
|
||||||
|
set(CPACK_BUILD_SOURCE_DIRS "/home/linus/ws/breakhack;/home/linus/ws/breakhack/build")
|
||||||
|
set(CPACK_CMAKE_GENERATOR "Unix Makefiles")
|
||||||
|
set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE")
|
||||||
|
set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE")
|
||||||
|
set(CPACK_GENERATOR "STGZ;TGZ;TZ")
|
||||||
|
set(CPACK_INSTALL_CMAKE_PROJECTS "/home/linus/ws/breakhack/build;breakhack;Release;.")
|
||||||
|
set(CPACK_INSTALL_PREFIX "/usr/local")
|
||||||
|
set(CPACK_MODULE_PATH "")
|
||||||
|
set(CPACK_NSIS_DISPLAY_NAME "BreakHack")
|
||||||
|
set(CPACK_NSIS_INSTALLER_ICON_CODE "")
|
||||||
|
set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "")
|
||||||
|
set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES")
|
||||||
|
set(CPACK_NSIS_PACKAGE_NAME "BreakHack")
|
||||||
|
set(CPACK_OUTPUT_CONFIG_FILE "/home/linus/ws/breakhack/build/CPackConfig.cmake")
|
||||||
|
set(CPACK_PACKAGE_CHECKSUM "MD5")
|
||||||
|
set(CPACK_PACKAGE_DEFAULT_LOCATION "/")
|
||||||
|
set(CPACK_PACKAGE_DESCRIPTION_FILE "/home/linus/ws/breakhack/README.md")
|
||||||
|
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "breakhack built using CMake")
|
||||||
|
set(CPACK_PACKAGE_DIRECTORY "/home/linus/ws/breakhack/build/package")
|
||||||
|
set(CPACK_PACKAGE_FILE_NAME "breakhack-0.1.1")
|
||||||
|
set(CPACK_PACKAGE_INSTALL_DIRECTORY "BreakHack")
|
||||||
|
set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "BreakHack")
|
||||||
|
set(CPACK_PACKAGE_NAME "BreakHack")
|
||||||
|
set(CPACK_PACKAGE_RELOCATABLE "true")
|
||||||
|
set(CPACK_PACKAGE_VENDOR "OliveShark")
|
||||||
|
set(CPACK_PACKAGE_VERSION "0.1.1")
|
||||||
|
set(CPACK_PACKAGE_VERSION_MAJOR "0")
|
||||||
|
set(CPACK_PACKAGE_VERSION_MINOR "1")
|
||||||
|
set(CPACK_PACKAGE_VERSION_PATCH "1")
|
||||||
|
set(CPACK_RESOURCE_FILE_LICENSE "/home/linus/ws/breakhack/LICENSE.txt")
|
||||||
|
set(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.11/Templates/CPack.GenericDescription.txt")
|
||||||
|
set(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-3.11/Templates/CPack.GenericWelcome.txt")
|
||||||
|
set(CPACK_SET_DESTDIR "OFF")
|
||||||
|
set(CPACK_SOURCE_7Z "")
|
||||||
|
set(CPACK_SOURCE_CYGWIN "")
|
||||||
|
set(CPACK_SOURCE_GENERATOR "TBZ2;TGZ;TXZ;TZ")
|
||||||
|
set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/home/linus/ws/breakhack/build/CPackSourceConfig.cmake")
|
||||||
|
set(CPACK_SOURCE_RPM "OFF")
|
||||||
|
set(CPACK_SOURCE_STRIP_FILES "")
|
||||||
|
set(CPACK_SOURCE_TBZ2 "ON")
|
||||||
|
set(CPACK_SOURCE_TGZ "ON")
|
||||||
|
set(CPACK_SOURCE_TXZ "ON")
|
||||||
|
set(CPACK_SOURCE_TZ "ON")
|
||||||
|
set(CPACK_SOURCE_ZIP "OFF")
|
||||||
|
set(CPACK_STRIP_FILES "breakhack")
|
||||||
|
set(CPACK_SYSTEM_NAME "Linux")
|
||||||
|
set(CPACK_TOPLEVEL_TAG "Linux")
|
||||||
|
set(CPACK_WIX_SIZEOF_VOID_P "8")
|
||||||
|
|
||||||
|
if(NOT CPACK_PROPERTIES_FILE)
|
||||||
|
set(CPACK_PROPERTIES_FILE "/home/linus/ws/breakhack/build/CPackProperties.cmake")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(EXISTS ${CPACK_PROPERTIES_FILE})
|
||||||
|
include(${CPACK_PROPERTIES_FILE})
|
||||||
|
endif()
|
|
@ -0,0 +1,94 @@
|
||||||
|
# This file will be configured to contain variables for CPack. These variables
|
||||||
|
# should be set in the CMake list file of the project before CPack module is
|
||||||
|
# included. The list of available CPACK_xxx variables and their associated
|
||||||
|
# documentation may be obtained using
|
||||||
|
# cpack --help-variable-list
|
||||||
|
#
|
||||||
|
# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME)
|
||||||
|
# and some are specific to a generator
|
||||||
|
# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables
|
||||||
|
# usually begin with CPACK_<GENNAME>_xxxx.
|
||||||
|
|
||||||
|
|
||||||
|
set(CPACK_BINARY_7Z "")
|
||||||
|
set(CPACK_BINARY_BUNDLE "")
|
||||||
|
set(CPACK_BINARY_CYGWIN "")
|
||||||
|
set(CPACK_BINARY_DEB "")
|
||||||
|
set(CPACK_BINARY_DRAGNDROP "")
|
||||||
|
set(CPACK_BINARY_FREEBSD "")
|
||||||
|
set(CPACK_BINARY_IFW "")
|
||||||
|
set(CPACK_BINARY_NSIS "")
|
||||||
|
set(CPACK_BINARY_OSXX11 "")
|
||||||
|
set(CPACK_BINARY_PACKAGEMAKER "")
|
||||||
|
set(CPACK_BINARY_PRODUCTBUILD "")
|
||||||
|
set(CPACK_BINARY_RPM "")
|
||||||
|
set(CPACK_BINARY_STGZ "")
|
||||||
|
set(CPACK_BINARY_TBZ2 "")
|
||||||
|
set(CPACK_BINARY_TGZ "")
|
||||||
|
set(CPACK_BINARY_TXZ "")
|
||||||
|
set(CPACK_BINARY_TZ "")
|
||||||
|
set(CPACK_BINARY_WIX "")
|
||||||
|
set(CPACK_BINARY_ZIP "")
|
||||||
|
set(CPACK_BUILD_SOURCE_DIRS "/home/linus/ws/breakhack;/home/linus/ws/breakhack/build")
|
||||||
|
set(CPACK_CMAKE_GENERATOR "Unix Makefiles")
|
||||||
|
set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE")
|
||||||
|
set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE")
|
||||||
|
set(CPACK_GENERATOR "TBZ2;TGZ;TXZ;TZ")
|
||||||
|
set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#")
|
||||||
|
set(CPACK_INSTALLED_DIRECTORIES "/home/linus/ws/breakhack;/")
|
||||||
|
set(CPACK_INSTALL_CMAKE_PROJECTS "")
|
||||||
|
set(CPACK_INSTALL_PREFIX "/usr/local")
|
||||||
|
set(CPACK_MODULE_PATH "")
|
||||||
|
set(CPACK_NSIS_DISPLAY_NAME "BreakHack")
|
||||||
|
set(CPACK_NSIS_INSTALLER_ICON_CODE "")
|
||||||
|
set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "")
|
||||||
|
set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES")
|
||||||
|
set(CPACK_NSIS_PACKAGE_NAME "BreakHack")
|
||||||
|
set(CPACK_OUTPUT_CONFIG_FILE "/home/linus/ws/breakhack/build/CPackConfig.cmake")
|
||||||
|
set(CPACK_PACKAGE_CHECKSUM "MD5")
|
||||||
|
set(CPACK_PACKAGE_DEFAULT_LOCATION "/")
|
||||||
|
set(CPACK_PACKAGE_DESCRIPTION_FILE "/home/linus/ws/breakhack/README.md")
|
||||||
|
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "breakhack built using CMake")
|
||||||
|
set(CPACK_PACKAGE_DIRECTORY "/home/linus/ws/breakhack/build/package")
|
||||||
|
set(CPACK_PACKAGE_FILE_NAME "BreakHack-0.1.1-Source")
|
||||||
|
set(CPACK_PACKAGE_INSTALL_DIRECTORY "BreakHack")
|
||||||
|
set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "BreakHack")
|
||||||
|
set(CPACK_PACKAGE_NAME "BreakHack")
|
||||||
|
set(CPACK_PACKAGE_RELOCATABLE "true")
|
||||||
|
set(CPACK_PACKAGE_VENDOR "OliveShark")
|
||||||
|
set(CPACK_PACKAGE_VERSION "0.1.1")
|
||||||
|
set(CPACK_PACKAGE_VERSION_MAJOR "0")
|
||||||
|
set(CPACK_PACKAGE_VERSION_MINOR "1")
|
||||||
|
set(CPACK_PACKAGE_VERSION_PATCH "1")
|
||||||
|
set(CPACK_RESOURCE_FILE_LICENSE "/home/linus/ws/breakhack/LICENSE.txt")
|
||||||
|
set(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.11/Templates/CPack.GenericDescription.txt")
|
||||||
|
set(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-3.11/Templates/CPack.GenericWelcome.txt")
|
||||||
|
set(CPACK_RPM_PACKAGE_SOURCES "ON")
|
||||||
|
set(CPACK_SET_DESTDIR "OFF")
|
||||||
|
set(CPACK_SOURCE_7Z "")
|
||||||
|
set(CPACK_SOURCE_CYGWIN "")
|
||||||
|
set(CPACK_SOURCE_GENERATOR "TBZ2;TGZ;TXZ;TZ")
|
||||||
|
set(CPACK_SOURCE_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#")
|
||||||
|
set(CPACK_SOURCE_INSTALLED_DIRECTORIES "/home/linus/ws/breakhack;/")
|
||||||
|
set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/home/linus/ws/breakhack/build/CPackSourceConfig.cmake")
|
||||||
|
set(CPACK_SOURCE_PACKAGE_FILE_NAME "BreakHack-0.1.1-Source")
|
||||||
|
set(CPACK_SOURCE_RPM "OFF")
|
||||||
|
set(CPACK_SOURCE_STRIP_FILES "")
|
||||||
|
set(CPACK_SOURCE_TBZ2 "ON")
|
||||||
|
set(CPACK_SOURCE_TGZ "ON")
|
||||||
|
set(CPACK_SOURCE_TOPLEVEL_TAG "Linux-Source")
|
||||||
|
set(CPACK_SOURCE_TXZ "ON")
|
||||||
|
set(CPACK_SOURCE_TZ "ON")
|
||||||
|
set(CPACK_SOURCE_ZIP "OFF")
|
||||||
|
set(CPACK_STRIP_FILES "")
|
||||||
|
set(CPACK_SYSTEM_NAME "Linux")
|
||||||
|
set(CPACK_TOPLEVEL_TAG "Linux-Source")
|
||||||
|
set(CPACK_WIX_SIZEOF_VOID_P "8")
|
||||||
|
|
||||||
|
if(NOT CPACK_PROPERTIES_FILE)
|
||||||
|
set(CPACK_PROPERTIES_FILE "/home/linus/ws/breakhack/build/CPackProperties.cmake")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(EXISTS ${CPACK_PROPERTIES_FILE})
|
||||||
|
include(${CPACK_PROPERTIES_FILE})
|
||||||
|
endif()
|
|
@ -0,0 +1,9 @@
|
||||||
|
# CMake generated Testfile for
|
||||||
|
# Source directory: /home/linus/ws/breakhack
|
||||||
|
# Build directory: /home/linus/ws/breakhack/build
|
||||||
|
#
|
||||||
|
# This file includes the relevant testing commands required for
|
||||||
|
# testing this directory and lists subdirectories to be tested as well.
|
||||||
|
add_test(test_util "test_util")
|
||||||
|
add_test(test_linkedlist "test_linkedlist")
|
||||||
|
add_test(test_hashtable "test_hashtable")
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,7 @@
|
||||||
|
test_util 0 0
|
||||||
|
test_linkedlist 0 0
|
||||||
|
test_hashtable 0 0
|
||||||
|
---
|
||||||
|
test_util
|
||||||
|
test_linkedlist
|
||||||
|
test_hashtable
|
|
@ -0,0 +1,51 @@
|
||||||
|
Start testing: May 13 15:58 CEST
|
||||||
|
----------------------------------------------------------
|
||||||
|
Unable to find executable: test_util
|
||||||
|
1/3 Testing: test_util
|
||||||
|
1/3 Test: test_util
|
||||||
|
Command: ""
|
||||||
|
Directory: /home/linus/ws/breakhack/build
|
||||||
|
"test_util" start time:
|
||||||
|
Output:
|
||||||
|
----------------------------------------------------------
|
||||||
|
<end of output>
|
||||||
|
Test time = 0.00 sec
|
||||||
|
----------------------------------------------------------
|
||||||
|
Test Passed.
|
||||||
|
"test_util" end time: May 13 15:58 CEST
|
||||||
|
"test_util" time elapsed: 00:00:00
|
||||||
|
----------------------------------------------------------
|
||||||
|
|
||||||
|
Unable to find executable: test_linkedlist
|
||||||
|
2/3 Testing: test_linkedlist
|
||||||
|
2/3 Test: test_linkedlist
|
||||||
|
Command: ""
|
||||||
|
Directory: /home/linus/ws/breakhack/build
|
||||||
|
"test_linkedlist" start time:
|
||||||
|
Output:
|
||||||
|
----------------------------------------------------------
|
||||||
|
<end of output>
|
||||||
|
Test time = 0.00 sec
|
||||||
|
----------------------------------------------------------
|
||||||
|
Test Passed.
|
||||||
|
"test_linkedlist" end time: May 13 15:58 CEST
|
||||||
|
"test_linkedlist" time elapsed: 00:00:00
|
||||||
|
----------------------------------------------------------
|
||||||
|
|
||||||
|
Unable to find executable: test_hashtable
|
||||||
|
3/3 Testing: test_hashtable
|
||||||
|
3/3 Test: test_hashtable
|
||||||
|
Command: ""
|
||||||
|
Directory: /home/linus/ws/breakhack/build
|
||||||
|
"test_hashtable" start time:
|
||||||
|
Output:
|
||||||
|
----------------------------------------------------------
|
||||||
|
<end of output>
|
||||||
|
Test time = 0.00 sec
|
||||||
|
----------------------------------------------------------
|
||||||
|
Test Passed.
|
||||||
|
"test_hashtable" end time: May 13 15:58 CEST
|
||||||
|
"test_hashtable" time elapsed: 00:00:00
|
||||||
|
----------------------------------------------------------
|
||||||
|
|
||||||
|
End testing: May 13 15:58 CEST
|
|
@ -0,0 +1,3 @@
|
||||||
|
1:test_util
|
||||||
|
2:test_linkedlist
|
||||||
|
3:test_hashtable
|
|
@ -0,0 +1,72 @@
|
||||||
|
# Install script for directory: /home/linus/ws/breakhack
|
||||||
|
|
||||||
|
# Set the install prefix
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||||
|
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||||
|
endif()
|
||||||
|
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||||
|
|
||||||
|
# Set the install configuration name.
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||||
|
if(BUILD_TYPE)
|
||||||
|
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||||
|
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||||
|
endif()
|
||||||
|
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Set the component getting installed.
|
||||||
|
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
if(COMPONENT)
|
||||||
|
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||||
|
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_COMPONENT)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Install shared libraries without execute permission?
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||||
|
set(CMAKE_INSTALL_SO_NO_EXE "0")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Is this installation the result of a crosscompile?
|
||||||
|
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||||
|
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xReleasex" OR NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/./breakhack" AND
|
||||||
|
NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/./breakhack")
|
||||||
|
file(RPATH_CHECK
|
||||||
|
FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/./breakhack"
|
||||||
|
RPATH "")
|
||||||
|
endif()
|
||||||
|
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE EXECUTABLE FILES "/home/linus/ws/breakhack/build/breakhack")
|
||||||
|
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/./breakhack" AND
|
||||||
|
NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/./breakhack")
|
||||||
|
if(CMAKE_INSTALL_DO_STRIP)
|
||||||
|
execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/./breakhack")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xReleasex" OR NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE FILE FILES
|
||||||
|
"/home/linus/ws/breakhack/assets.pack"
|
||||||
|
"/home/linus/ws/breakhack/data.pack"
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT)
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||||
|
file(WRITE "/home/linus/ws/breakhack/build/${CMAKE_INSTALL_MANIFEST}"
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
|
@ -0,0 +1,30 @@
|
||||||
|
/*
|
||||||
|
* BreakHack - A dungeone crawler RPG
|
||||||
|
* Copyright (C) 2018 Linus Probert <linus.probert@gmail.com>
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef CONFIG_H_
|
||||||
|
#define CONFIG_H_
|
||||||
|
|
||||||
|
/* #undef _WIN32 */
|
||||||
|
|
||||||
|
#define GAME_TITLE "BreakHack"
|
||||||
|
#define MAJOR_VERSION 0
|
||||||
|
#define MINOR_VERSION 1
|
||||||
|
#define PATCH_VERSION 1
|
||||||
|
#define RELEASE_TYPE "(early access)"
|
||||||
|
|
||||||
|
#endif // CONFIG_H_
|
|
@ -0,0 +1,7 @@
|
||||||
|
brew 'sdl2'
|
||||||
|
brew 'sdl2_image'
|
||||||
|
brew 'sdl2_mixer'
|
||||||
|
brew 'sdl2_ttf'
|
||||||
|
brew 'lua'
|
||||||
|
brew 'cmocka'
|
||||||
|
brew 'physfs'
|
Loading…
Reference in New Issue