mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-05 21:18:15 +01:00
Move wut to using CMake instead of Makefiles.
The old makefile solution will still be around on branch "make".
This commit is contained in:
parent
5405bca57e
commit
8af0ffe9c7
47
CMakeLists.txt
Normal file
47
CMakeLists.txt
Normal file
@ -0,0 +1,47 @@
|
||||
cmake_minimum_required(VERSION 3.2)
|
||||
project(wut)
|
||||
include(ExternalProject)
|
||||
|
||||
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
||||
|
||||
set(DEVKITPPC $ENV{DEVKITPPC} CACHE STRING "Path to devkitPPC install")
|
||||
|
||||
# Check for DEVKITPPC
|
||||
if(NOT DEVKITPPC)
|
||||
message(FATAL_ERROR "You must have defined DEVKITPPC before calling cmake.")
|
||||
endif()
|
||||
|
||||
externalproject_add(crt
|
||||
SOURCE_DIR "${CMAKE_SOURCE_DIR}/crt"
|
||||
CMAKE_GENERATOR "Unix Makefiles"
|
||||
INSTALL_DIR "${CMAKE_BINARY_DIR}/staging"
|
||||
CMAKE_CACHE_ARGS
|
||||
-DDEVKITPPC:string=${DEVKITPPC}
|
||||
-DWUT_ROOT:string=${CMAKE_SOURCE_DIR}
|
||||
-DCMAKE_INSTALL_PREFIX:string=<INSTALL_DIR>
|
||||
-DCMAKE_TOOLCHAIN_FILE:string=${CMAKE_SOURCE_DIR}/cmake/wut-toolchain.cmake)
|
||||
|
||||
externalproject_add(rpl
|
||||
SOURCE_DIR "${CMAKE_SOURCE_DIR}/rpl"
|
||||
CMAKE_GENERATOR "Unix Makefiles"
|
||||
INSTALL_DIR "${CMAKE_BINARY_DIR}/staging"
|
||||
CMAKE_CACHE_ARGS
|
||||
-DDEVKITPPC:string=${DEVKITPPC}
|
||||
-DWUT_ROOT:string=${CMAKE_SOURCE_DIR}
|
||||
-DCMAKE_INSTALL_PREFIX:string=<INSTALL_DIR>
|
||||
-DCMAKE_TOOLCHAIN_FILE:string=${CMAKE_SOURCE_DIR}/cmake/wut-toolchain.cmake)
|
||||
|
||||
add_subdirectory(tools)
|
||||
|
||||
install(DIRECTORY "${CMAKE_SOURCE_DIR}/include/"
|
||||
DESTINATION "${CMAKE_INSTALL_PREFIX}/include"
|
||||
FILES_MATCHING PATTERN "*.h*")
|
||||
|
||||
install(DIRECTORY "${CMAKE_SOURCE_DIR}/cmake/"
|
||||
DESTINATION "${CMAKE_INSTALL_PREFIX}/cmake")
|
||||
|
||||
install(DIRECTORY "${CMAKE_SOURCE_DIR}/rules/"
|
||||
DESTINATION "${CMAKE_INSTALL_PREFIX}/rules")
|
||||
|
||||
install(DIRECTORY "${CMAKE_BINARY_DIR}/staging/"
|
||||
DESTINATION "${CMAKE_INSTALL_PREFIX}")
|
50
Makefile
50
Makefile
@ -1,50 +0,0 @@
|
||||
ifeq ($(findstring CYGWIN,$(shell uname -s)),CYGWIN)
|
||||
WUT_ROOT := $(shell cygpath -w ${CURDIR})
|
||||
RPL_ROOT := $(shell cygpath -w ${SYSTEM_RPL_ROOT})
|
||||
else
|
||||
WUT_ROOT := $(CURDIR)
|
||||
RPL_ROOT := $(SYSTEM_RPL_ROOT)
|
||||
endif
|
||||
|
||||
TARGETS := tools crt rpl
|
||||
|
||||
DESTDIR ?= $(CURDIR)
|
||||
INSTALLDIR := $(DESTDIR)
|
||||
|
||||
export WUT_ROOT
|
||||
export INSTALLDIR
|
||||
|
||||
all:
|
||||
@for dir in $(TARGETS); do \
|
||||
echo; \
|
||||
echo "Entering Directory $$dir"; \
|
||||
$(MAKE) --no-print-directory -C $$dir; \
|
||||
echo "Leaving Directory $$dir"; \
|
||||
done
|
||||
|
||||
clean:
|
||||
@for dir in $(TARGETS); do \
|
||||
echo; \
|
||||
echo Cleaning $$dir; \
|
||||
$(MAKE) --no-print-directory -C $$dir clean; \
|
||||
done
|
||||
|
||||
install:
|
||||
@mkdir -p $(INSTALLDIR)
|
||||
@cp -r include $(INSTALLDIR) || :
|
||||
@for dir in $(TARGETS); do \
|
||||
echo; \
|
||||
echo Installing $$dir; \
|
||||
$(MAKE) --no-print-directory -C $$dir install; \
|
||||
done
|
||||
|
||||
test: all
|
||||
@tools/bin/implcheck $(RPL_ROOT)\coreinit.rpl rpl\libcoreinit\exports.h
|
||||
@tools/bin/implcheck $(RPL_ROOT)\gx2.rpl rpl\libgx2\exports.h
|
||||
@tools/bin/implcheck $(RPL_ROOT)\nsysnet.rpl rpl\libnsysnet\exports.h
|
||||
@tools/bin/implcheck $(RPL_ROOT)\proc_ui.rpl rpl\libproc_ui\exports.h
|
||||
@tools/bin/implcheck $(RPL_ROOT)\sndcore2.rpl rpl\libsndcore2\exports.h
|
||||
@tools/bin/implcheck $(RPL_ROOT)\sysapp.rpl rpl\libsysapp\exports.h
|
||||
@tools/bin/implcheck $(RPL_ROOT)\vpad.rpl rpl\libvpad\exports.h
|
||||
|
||||
.PHONY: all clean install
|
58
README.md
58
README.md
@ -6,15 +6,51 @@ Licensed under the terms of the GNU General Public License, version 2 or later (
|
||||
Doxygen output can be found at https://decaf-emu.github.io/wut
|
||||
|
||||
## Requirements
|
||||
- devkitPRO + devkitPPC
|
||||
- Tested on Linux, OS X and cygwin on Windows
|
||||
- Tested on Linux, OS X, Windows
|
||||
- [devkitPPC](https://devkitpro.org/wiki/Getting_Started/devkitPPC)
|
||||
- CMake
|
||||
- Make
|
||||
|
||||
## Usage
|
||||
- git clone --recursive https://github.com/decaf-emu/wut.git
|
||||
- cd wut
|
||||
- export devkitPRO=...
|
||||
- export devkitPPC=...
|
||||
- export WUT_ROOT=$PWD
|
||||
- make install
|
||||
- cd samples/helloworld
|
||||
- make
|
||||
## Linux / OS X
|
||||
Requires CMake + Make + [devkitPPC](https://devkitpro.org/wiki/Getting_Started/devkitPPC) + libzdev
|
||||
|
||||
```
|
||||
export DEVKITPPC=<Path to devkitPPC>
|
||||
git clone --recursive https://github.com/decaf-emu/wut.git
|
||||
cd wut
|
||||
mkdir build && cd build
|
||||
cmake -DCMAKE_INSTALL_PREFIX=install ../
|
||||
make
|
||||
export WUT_ROOT=$PWD/install
|
||||
```
|
||||
|
||||
Then for any wut project you want to build you must use the wut-toolchain.cmake script:
|
||||
|
||||
```
|
||||
cd ../samples/helloworld
|
||||
mkdir build && cd build
|
||||
cmake -DCMAKE_TOOLCHAIN_FILE=$WUT_ROOT/cmake/wut-toolchain.cmake ../
|
||||
make
|
||||
```
|
||||
|
||||
## Windows
|
||||
Requires [Windows CMake](https://cmake.org/download/) + [Windows Make](http://gnuwin32.sourceforge.net/packages/make.htm) + [devkitPPC](https://devkitpro.org/wiki/Getting_Started/devkitPPC) + Visual Studio.
|
||||
|
||||
```
|
||||
set DEVKITPPC=<Path to devkitPPC>
|
||||
git clone --recursive https://github.com/decaf-emu/wut.git
|
||||
cd wut
|
||||
cmake -DCMAKE_INSTALL_PREFIX=install -G "Visual Studio 15 2017" ../
|
||||
msbuild INSTALL.vcxproj /p:Configuration=Release /p:Platform=Win32
|
||||
set WUT_ROOT=%CD%\install
|
||||
```
|
||||
|
||||
Then for any wut project you want to build you must use Unix Makefiles with the wut-toolchain.cmake script:
|
||||
|
||||
```
|
||||
cd ..\samples\helloworld
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -DCMAKE_TOOLCHAIN_FILE=%WUT_ROOT%\cmake\wut-toolchain.cmake -G "Unix Makefiles" ../
|
||||
make
|
||||
```
|
||||
|
74
cmake/wut-toolchain.cmake
Normal file
74
cmake/wut-toolchain.cmake
Normal file
@ -0,0 +1,74 @@
|
||||
set(DEVKITPPC $ENV{DEVKITPPC} CACHE STRING "Path to devkitPPC install")
|
||||
set(WUT_ROOT $ENV{WUT_ROOT} CACHE STRING "Path to wut install")
|
||||
|
||||
# Check for DEVKITPPC
|
||||
if(NOT DEVKITPPC)
|
||||
message(FATAL_ERROR "You must have defined DEVKITPPC before calling cmake.")
|
||||
endif()
|
||||
|
||||
if(NOT WUT_ROOT)
|
||||
# Let's try find it!
|
||||
if(EXISTS "${CMAKE_SOURCE_DIR}/cmake/wut-toolchain.cmake")
|
||||
# ./ for wut/CMakeLists.txt
|
||||
set(FIND_WUT_ROOT ${CMAKE_SOURCE_DIR})
|
||||
elseif(EXISTS "${CMAKE_SOURCE_DIR}/../cmake/wut-toolchain.cmake")
|
||||
# ../ for wut/rpl/CMakeLists.txt
|
||||
set(FIND_WUT_ROOT "${CMAKE_SOURCE_DIR}/..")
|
||||
elseif(EXISTS "${CMAKE_TOOLCHAIN_FILE}")
|
||||
# We're a toolchain file installed in WUT_ROOT/cmake
|
||||
set(FIND_WUT_ROOT "${CMAKE_TOOLCHAIN_FILE}/..")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(NOT WUT_ROOT)
|
||||
message(FATAL_ERROR "You must have defined WUT_ROOT before calling cmake.")
|
||||
endif()
|
||||
|
||||
# Set it in ENV to make sure it gets passed around, cmake is a bit odd like that.
|
||||
set(ENV{WUT_ROOT} ${WUT_ROOT})
|
||||
set(ENV{DEVKITPPC} ${DEVKITPPC})
|
||||
|
||||
set(CMAKE_SYSTEM_NAME Generic)
|
||||
|
||||
if(WIN32)
|
||||
# Because "Unix Makefiles" generator does not set this, even if on Windows
|
||||
set(CMAKE_EXECUTABLE_SUFFIX ".exe")
|
||||
endif()
|
||||
|
||||
set(CMAKE_C_COMPILER "${DEVKITPPC}/bin/powerpc-eabi-gcc${CMAKE_EXECUTABLE_SUFFIX}")
|
||||
set(CMAKE_CXX_COMPILER "${DEVKITPPC}/bin/powerpc-eabi-g++${CMAKE_EXECUTABLE_SUFFIX}")
|
||||
|
||||
set(CMAKE_FIND_ROOT_PATH ${DEVKITPPC})
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
|
||||
|
||||
set(DEVKIT_COMPILE_FLAGS "-fno-builtin -ffreestanding")
|
||||
set(DEVKIT_LINKER_FLAGS "-nostartfiles -L${DEVKITPPC}/lib")
|
||||
|
||||
set(RPX_COMPILE_FLAGS "\
|
||||
${DEVKIT_COMPILE_FLAGS}")
|
||||
|
||||
set(RPX_LINKER_FLAGS "\
|
||||
${DEVKIT_LINKER_FLAGS} \
|
||||
-pie -fPIE -z common-page-size=64 -z max-page-size=64 -T ${WUT_ROOT}/rules/rpl.ld -L${WUT_ROOT}/lib \
|
||||
-Wl,-wrap,malloc,-wrap,free,-wrap,memalign,-wrap,calloc,-wrap,realloc,-wrap,malloc_usable_size \
|
||||
-Wl,-wrap,_malloc_r,-wrap,_free_r,-wrap,_realloc_r,-wrap,_calloc_r,-wrap,_memalign_r,-wrap,_malloc_usable_size_r \
|
||||
-Wl,-wrap,valloc,-wrap,_valloc_r,-wrap,_pvalloc_r,-wrap,__eabi")
|
||||
|
||||
set(ELF_TO_RPL ${WUT_ROOT}/bin/elf2rpl${CMAKE_EXECUTABLE_SUFFIX})
|
||||
|
||||
macro(add_rpx target)
|
||||
add_executable(${ARGV})
|
||||
set_target_properties(${target} PROPERTIES
|
||||
COMPILE_FLAGS "${RPX_COMPILE_FLAGS}"
|
||||
LINK_FLAGS "${RPX_LINKER_FLAGS}")
|
||||
|
||||
target_include_directories(${target} PRIVATE "${WUT_ROOT}/include")
|
||||
target_link_libraries(${target} crt)
|
||||
|
||||
add_custom_command(TARGET ${target} POST_BUILD
|
||||
COMMAND "${ELF_TO_RPL}" "$<TARGET_FILE:${target}>" "$<TARGET_FILE:${target}>.rpx"
|
||||
COMMENT "Converting elf to rpx")
|
||||
endmacro()
|
16
crt/CMakeLists.txt
Normal file
16
crt/CMakeLists.txt
Normal file
@ -0,0 +1,16 @@
|
||||
cmake_minimum_required(VERSION 3.2)
|
||||
project(wut-crt)
|
||||
|
||||
include(../cmake/wut-toolchain.cmake)
|
||||
|
||||
set_property(SOURCE crt0.S PROPERTY LANGUAGE C)
|
||||
|
||||
add_library(crt
|
||||
crt0.S
|
||||
fs_dev.c
|
||||
memory.c)
|
||||
set_target_properties(crt PROPERTIES
|
||||
COMPILE_FLAGS "-fno-builtin -ffreestanding")
|
||||
target_include_directories(crt PRIVATE "../include")
|
||||
|
||||
install(TARGETS crt ARCHIVE DESTINATION "${CMAKE_INSTALL_PREFIX}/lib")
|
28
crt/Makefile
28
crt/Makefile
@ -1,28 +0,0 @@
|
||||
include $(CURDIR)/../rules/ppc.mk
|
||||
|
||||
CFILES := $(wildcard *.c)
|
||||
SFILES := $(wildcard *.S)
|
||||
OFILES := $(CFILES:.c=.o) $(SFILES:.S=.o)
|
||||
OUTPUT := libcrt
|
||||
|
||||
all: $(OUTPUT).a $(OFILES)
|
||||
|
||||
clean:
|
||||
@echo "[RM] $(notdir $(OUTPUT))"
|
||||
@rm -f $(OFILES) $(OUTPUT).a
|
||||
|
||||
install: all
|
||||
@mkdir -p $(INSTALLDIR)/lib
|
||||
@cp -f *.a $(INSTALLDIR)/lib
|
||||
|
||||
%.o: %.c
|
||||
@echo "[CC] $(notdir $<)"
|
||||
@$(CC) $(CFLAGS) -c $< -o $@
|
||||
|
||||
%.o: %.S
|
||||
@echo "[CC] $(notdir $<)"
|
||||
@$(CC) $(CFLAGS) -c $< -o $@
|
||||
|
||||
$(OUTPUT).a: $(OFILES)
|
||||
|
||||
.PHONY: all clean
|
@ -1 +0,0 @@
|
||||
msbuild tools/tools.sln /p:Configuration=Release
|
30
rpl/CMakeLists.txt
Normal file
30
rpl/CMakeLists.txt
Normal file
@ -0,0 +1,30 @@
|
||||
cmake_minimum_required(VERSION 3.2)
|
||||
project(wut-libraries)
|
||||
|
||||
include(../cmake/wut-toolchain.cmake)
|
||||
|
||||
set_property(SOURCE common/stub.S PROPERTY LANGUAGE C)
|
||||
|
||||
set(WUT_RPL_COMPILE_FLAGS "-Wno-unused-variable -fno-builtin -ffreestanding")
|
||||
set(WUT_RPL_LINKER_FLAGS "-nostdlib -nostartfiles")
|
||||
|
||||
macro(add_wut_rpl target)
|
||||
add_library(${target}
|
||||
common/lib.c
|
||||
common/stub.S
|
||||
${target}/config.h
|
||||
${target}/exports.h)
|
||||
target_include_directories(${target} PRIVATE "common" "${target}")
|
||||
set_target_properties(${target} PROPERTIES
|
||||
COMPILE_FLAGS "${WUT_RPL_COMPILE_FLAGS}"
|
||||
LINK_FLAGS "${WUT_RPL_LINKER_FLAGS}")
|
||||
install(TARGETS ${target} ARCHIVE DESTINATION "${CMAKE_INSTALL_PREFIX}/lib")
|
||||
endmacro()
|
||||
|
||||
add_wut_rpl(coreinit)
|
||||
add_wut_rpl(gx2)
|
||||
add_wut_rpl(nsysnet)
|
||||
add_wut_rpl(proc_ui)
|
||||
add_wut_rpl(sndcore2)
|
||||
add_wut_rpl(sysapp)
|
||||
add_wut_rpl(vpad)
|
24
rpl/Makefile
24
rpl/Makefile
@ -1,24 +0,0 @@
|
||||
TARGETS := libcoreinit libgx2 libnsysnet libvpad libproc_ui libsndcore2 libsysapp
|
||||
|
||||
all:
|
||||
@for dir in $(TARGETS); do \
|
||||
echo; \
|
||||
echo Entering Directory $$dir; \
|
||||
$(MAKE) --no-print-directory -C $$dir; \
|
||||
echo Leaving Directory $$dir; \
|
||||
done
|
||||
|
||||
clean:
|
||||
@for dir in $(TARGETS); do \
|
||||
echo Cleaning $$dir; \
|
||||
$(MAKE) --no-print-directory -C $$dir clean; \
|
||||
done
|
||||
|
||||
install: all
|
||||
@mkdir -p $(INSTALLDIR)/lib
|
||||
@for dir in $(TARGETS); do \
|
||||
echo Installing $$dir; \
|
||||
cp $$dir/*.a $(INSTALLDIR)/lib; \
|
||||
done
|
||||
|
||||
.PHONY: all install clean
|
@ -1,71 +0,0 @@
|
||||
.SUFFIXES:
|
||||
|
||||
ifeq ($(findstring CYGWIN,$(shell uname -s)),CYGWIN)
|
||||
CUR_DIR := $(shell cygpath -w ${CURDIR})
|
||||
else
|
||||
CUR_DIR := $(CURDIR)
|
||||
endif
|
||||
|
||||
TARGET := $(notdir $(CUR_DIR))
|
||||
BUILD := build
|
||||
SOURCE := ../common .
|
||||
INCLUDE := .
|
||||
DATA := data
|
||||
LIBS :=
|
||||
|
||||
include $(WUT_ROOT)/rules/ppc.mk
|
||||
|
||||
LD := $(PREFIX)ld
|
||||
RPLCFLAGS := -Wno-unused-variable -fno-builtin
|
||||
CFLAGS += -O2 -Wall -std=c11 $(RPLCFLAGS)
|
||||
ODEPS := stub.o lib.o
|
||||
|
||||
ifneq ($(BUILD),$(notdir $(CURDIR)))
|
||||
|
||||
export OUTPUT := $(CUR_DIR)/$(TARGET)
|
||||
export VPATH := $(foreach dir,$(SOURCE),$(CUR_DIR)/$(dir)) \
|
||||
$(foreach dir,$(DATA),$(CUR_DIR)/$(dir))
|
||||
export BUILDDIR := $(CUR_DIR)/$(BUILD)
|
||||
export DEPSDIR := $(BUILDDIR)
|
||||
|
||||
CFILES := $(foreach dir,$(SOURCE),$(notdir $(wildcard $(dir)/*.c)))
|
||||
CXXFILES := $(foreach dir,$(SOURCE),$(notdir $(wildcard $(dir)/*.cpp)))
|
||||
SFILES := $(foreach dir,$(SOURCE),$(notdir $(wildcard $(dir)/*.S)))
|
||||
|
||||
export OFILES := $(CFILES:.c=.o) \
|
||||
$(CXXFILES:.cpp=.o) \
|
||||
$(SFILES:.S=.o)
|
||||
|
||||
export INCLUDES := $(foreach dir,$(INCLUDE),-I$(CUR_DIR)/$(dir)) \
|
||||
-I$(CUR_DIR)/$(BUILD)
|
||||
|
||||
.PHONY: $(BUILD) clean
|
||||
|
||||
$(BUILD):
|
||||
@[ -d $@ ] || mkdir -p $@
|
||||
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CUR_DIR)/Makefile
|
||||
|
||||
clean:
|
||||
@echo "[RM] $(notdir $(OUTPUT))"
|
||||
@rm -rf $(BUILD) $(OUTPUT).elf $(OUTPUT).a
|
||||
|
||||
else
|
||||
|
||||
DEPENDS := $(OFILES:.o=.d)
|
||||
OFILES := $(filter-out $(ODEPS),$(OFILES))
|
||||
|
||||
$(OUTPUT).a: rpl.o $(OFILES)
|
||||
|
||||
lib.c: exports.h
|
||||
|
||||
lib.o: lib.c exports.h
|
||||
@echo "[CC] $(notdir $<)"
|
||||
@$(CC) $(EXTRA_OPTIONS) $(RPLCFLAGS) -S $(INCLUDES) $< -o lib.S
|
||||
@$(CC) $(EXTRA_OPTIONS) $(RPLCFLAGS) -c lib.S -o $@
|
||||
|
||||
rpl.o: $(ODEPS)
|
||||
@$(LD) $(EXTRA_OPTIONS) $(LDFLAGS) -r $(ODEPS) -o $@
|
||||
|
||||
-include $(DEPENDS)
|
||||
|
||||
endif
|
@ -1,2 +0,0 @@
|
||||
-include ../common/rules.mk
|
||||
-include ../../common/rules.mk
|
@ -1,2 +0,0 @@
|
||||
-include ../common/rules.mk
|
||||
-include ../../common/rules.mk
|
@ -1,2 +0,0 @@
|
||||
-include ../common/rules.mk
|
||||
-include ../../common/rules.mk
|
@ -1,2 +0,0 @@
|
||||
-include ../common/rules.mk
|
||||
-include ../../common/rules.mk
|
@ -1,2 +0,0 @@
|
||||
-include ../common/rules.mk
|
||||
-include ../../common/rules.mk
|
@ -1,2 +0,0 @@
|
||||
-include ../common/rules.mk
|
||||
-include ../../common/rules.mk
|
@ -1,2 +0,0 @@
|
||||
-include ../common/rules.mk
|
||||
-include ../../common/rules.mk
|
@ -1,51 +0,0 @@
|
||||
ifeq ($(strip $(DEVKITPRO)),)
|
||||
$(error "Please ensure DEVKITPRO is in your environment.")
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(DEVKITPPC)),)
|
||||
$(error "Please ensure DEVKITPPC is in your environment.")
|
||||
endif
|
||||
|
||||
export PATH := $(DEVKITPPC)/bin:$(PATH)
|
||||
|
||||
PREFIX := powerpc-eabi-
|
||||
OBJCOPY := $(PREFIX)objcopy
|
||||
AR := $(PREFIX)ar
|
||||
AS := $(PREFIX)gcc
|
||||
CC := $(PREFIX)gcc
|
||||
CXX := $(PREFIX)g++
|
||||
STRIP := $(PREFIX)strip
|
||||
|
||||
ifeq ($(findstring $(PREFIX),$(LD)),)
|
||||
LD := $(CC)
|
||||
endif
|
||||
|
||||
EXTRA_OPTIONS =
|
||||
|
||||
ifdef VERBOSE
|
||||
EXTRA_OPTIONS += -v
|
||||
endif
|
||||
|
||||
%.o: %.c
|
||||
@echo "[CC] $(notdir $<)"
|
||||
@$(CC) $(EXTRA_OPTIONS) $(CFLAGS) $(INCLUDES) -c $< -o $@
|
||||
|
||||
%.o: %.cpp
|
||||
@echo "[CXX] $(notdir $<)"
|
||||
@$(CXX) $(EXTRA_OPTIONS) $(CXXFLAGS) $(INCLUDES) -c $< -o $@
|
||||
|
||||
%.o: %.s
|
||||
@echo "[CC] $(notdir $<)"
|
||||
@$(AS) $(EXTRA_OPTIONS) -x assembler-with-cpp $(ASFLAGS) $(INCLUDES) -c $< -o $@
|
||||
|
||||
%.o: %.S
|
||||
@echo "[CC] $(notdir $<)"
|
||||
@$(AS) $(EXTRA_OPTIONS) -x assembler-with-cpp $(ASFLAGS) $(INCLUDES) -c $< -o $@
|
||||
|
||||
%.a:
|
||||
@echo "[AR] $(notdir $@)"
|
||||
@$(AR) -rcs $@ $^
|
||||
|
||||
%.elf: $(OFILES)
|
||||
@echo "[LD] $(notdir $@)"
|
||||
@$(LD) $^ $(LIBPATHS) $(LIBS) $(LDFLAGS) -o $@
|
@ -1,9 +0,0 @@
|
||||
LIBPATHS := -L$(WUT_ROOT)/lib
|
||||
CFLAGS := -I$(WUT_ROOT)/include -fno-builtin -ffreestanding -std=c11
|
||||
CXXFLAGS := $(CFLAGS)
|
||||
LDFLAGS := -nostdlib -nostartfiles
|
||||
|
||||
include $(WUT_ROOT)/rules/base.mk
|
||||
|
||||
%.rpx: %.elf
|
||||
@$(STRIP) $< -o $(BUILDDIR)/$(notdir $<)
|
14
rules/rpl.mk
14
rules/rpl.mk
@ -1,14 +0,0 @@
|
||||
LIBPATHS := -L$(WUT_ROOT)/lib -L$(DEVKITPPC)/lib
|
||||
CFLAGS := -I$(WUT_ROOT)/include -fno-builtin -ffreestanding
|
||||
CXXFLAGS := $(CFLAGS)
|
||||
LDFLAGS := -nostartfiles -T $(WUT_ROOT)/rules/rpl.ld -pie -fPIE -z common-page-size=64 -z max-page-size=64 -lcrt \
|
||||
-Wl,-wrap,malloc,-wrap,free,-wrap,memalign,-wrap,calloc,-wrap,realloc,-wrap,malloc_usable_size \
|
||||
-Wl,-wrap,_malloc_r,-wrap,_free_r,-wrap,_realloc_r,-wrap,_calloc_r,-wrap,_memalign_r,-wrap,_malloc_usable_size_r \
|
||||
-Wl,-wrap,valloc,-wrap,_valloc_r,-wrap,_pvalloc_r,-wrap,__eabi
|
||||
ELF2RPL := $(WUT_ROOT)/bin/elf2rpl
|
||||
|
||||
include $(WUT_ROOT)/rules/base.mk
|
||||
|
||||
%.rpx: %.elf
|
||||
@echo "[RPX] $(notdir $@)"
|
||||
@$(ELF2RPL) $(BUILDDIR)/$(notdir $<) $@
|
5
samples/CMakeLists.txt
Normal file
5
samples/CMakeLists.txt
Normal file
@ -0,0 +1,5 @@
|
||||
cmake_minimum_required(VERSION 3.2)
|
||||
project(wut-samples)
|
||||
|
||||
add_subdirectory(helloworld)
|
||||
add_subdirectory(pong)
|
8
samples/helloworld/CMakeLists.txt
Normal file
8
samples/helloworld/CMakeLists.txt
Normal file
@ -0,0 +1,8 @@
|
||||
cmake_minimum_required(VERSION 3.2)
|
||||
project(helloworld)
|
||||
|
||||
add_rpx(helloworld src/main.c)
|
||||
target_link_libraries(helloworld
|
||||
coreinit
|
||||
proc_ui
|
||||
sysapp)
|
@ -1,69 +0,0 @@
|
||||
.SUFFIXES:
|
||||
|
||||
ifeq ($(strip $(WUT_ROOT)),)
|
||||
$(error "Please ensure WUT_ROOT is in your environment.")
|
||||
endif
|
||||
|
||||
ifeq ($(findstring CYGWIN,$(shell uname -s)),CYGWIN)
|
||||
ROOT := $(shell cygpath -w ${CURDIR})
|
||||
WUT_ROOT := $(shell cygpath -w ${WUT_ROOT})
|
||||
else
|
||||
ROOT := $(CURDIR)
|
||||
endif
|
||||
|
||||
include $(WUT_ROOT)/rules/rpl.mk
|
||||
|
||||
TARGET := $(notdir $(CURDIR))
|
||||
BUILD := build
|
||||
SOURCE := src
|
||||
INCLUDE := include
|
||||
DATA := data
|
||||
LIBS := -lgcc -lcrt -lcoreinit -lproc_ui -lsysapp
|
||||
|
||||
CFLAGS += -O2 -Wall -std=c11
|
||||
CXXFLAGS += -O2 -Wall
|
||||
|
||||
ifneq ($(BUILD),$(notdir $(CURDIR)))
|
||||
|
||||
export OUTPUT := $(ROOT)/$(TARGET)
|
||||
export VPATH := $(foreach dir,$(SOURCE),$(ROOT)/$(dir)) \
|
||||
$(foreach dir,$(DATA),$(ROOT)/$(dir))
|
||||
export BUILDDIR := $(ROOT)
|
||||
export DEPSDIR := $(BUILDDIR)
|
||||
|
||||
CFILES := $(foreach dir,$(SOURCE),$(notdir $(wildcard $(dir)/*.c)))
|
||||
CXXFILES := $(foreach dir,$(SOURCE),$(notdir $(wildcard $(dir)/*.cpp)))
|
||||
SFILES := $(foreach dir,$(SOURCE),$(notdir $(wildcard $(dir)/*.S)))
|
||||
|
||||
ifeq ($(strip $(CXXFILES)),)
|
||||
export LD := $(CC)
|
||||
else
|
||||
export LD := $(CXX)
|
||||
endif
|
||||
|
||||
export OFILES := $(CFILES:.c=.o) \
|
||||
$(CXXFILES:.cpp=.o) \
|
||||
$(SFILES:.S=.o)
|
||||
export INCLUDES := $(foreach dir,$(INCLUDE),-I$(ROOT)/$(dir)) \
|
||||
-I$(ROOT)/$(BUILD)
|
||||
|
||||
.PHONY: $(BUILD) clean
|
||||
|
||||
$(BUILD):
|
||||
@[ -d $@ ] || mkdir -p $@
|
||||
@$(MAKE) --no-print-directory -C $(BUILD) -f $(ROOT)/Makefile
|
||||
|
||||
clean:
|
||||
@echo "[RM] $(notdir $(OUTPUT))"
|
||||
@rm -rf $(BUILD) $(OUTPUT).elf $(OUTPUT).rpx $(OUTPUT).a
|
||||
|
||||
else
|
||||
|
||||
DEPENDS := $(OFILES:.o=.d)
|
||||
|
||||
$(OUTPUT).rpx: $(OUTPUT).elf
|
||||
$(OUTPUT).elf: $(OFILES)
|
||||
|
||||
-include $(DEPENDS)
|
||||
|
||||
endif
|
13
samples/pong/CMakeLists.txt
Normal file
13
samples/pong/CMakeLists.txt
Normal file
@ -0,0 +1,13 @@
|
||||
cmake_minimum_required(VERSION 3.2)
|
||||
project(pong)
|
||||
|
||||
include($ENV{WUT_ROOT}/cmake/wut-toolchain.cmake)
|
||||
|
||||
file(GLOB_RECURSE SOURCE_FILES *.c)
|
||||
file(GLOB_RECURSE HEADER_FILES *.h)
|
||||
|
||||
add_rpx(pong ${SOURCE_FILES} ${HEADER_FILES})
|
||||
target_link_libraries(pong
|
||||
coreinit
|
||||
proc_ui
|
||||
vpad)
|
@ -1,70 +0,0 @@
|
||||
.SUFFIXES:
|
||||
|
||||
ifeq ($(strip $(WUT_ROOT)),)
|
||||
$(error "Please ensure WUT_ROOT is in your environment.")
|
||||
endif
|
||||
|
||||
ifeq ($(findstring CYGWIN,$(shell uname -s)),CYGWIN)
|
||||
ROOT := $(shell cygpath -w ${CURDIR})
|
||||
WUT_ROOT := $(shell cygpath -w ${WUT_ROOT})
|
||||
else
|
||||
ROOT := $(CURDIR)
|
||||
endif
|
||||
|
||||
include $(WUT_ROOT)/rules/rpl.mk
|
||||
|
||||
TARGET := $(notdir $(CURDIR))
|
||||
BUILD := build
|
||||
SOURCE := src
|
||||
INCLUDE := include
|
||||
DATA := data
|
||||
LIBS := -lgcc -lcrt -lcoreinit -lvpad -lproc_ui
|
||||
|
||||
CFLAGS += -O2 -Wall -std=c11
|
||||
CXXFLAGS += -O2 -Wall
|
||||
ASFLAGS += -mregnames
|
||||
|
||||
ifneq ($(BUILD),$(notdir $(CURDIR)))
|
||||
|
||||
export OUTPUT := $(ROOT)/$(TARGET)
|
||||
export VPATH := $(foreach dir,$(SOURCE),$(ROOT)/$(dir)) \
|
||||
$(foreach dir,$(DATA),$(ROOT)/$(dir))
|
||||
export BUILDDIR := $(ROOT)
|
||||
export DEPSDIR := $(BUILDDIR)
|
||||
|
||||
CFILES := $(foreach dir,$(SOURCE),$(notdir $(wildcard $(dir)/*.c)))
|
||||
CXXFILES := $(foreach dir,$(SOURCE),$(notdir $(wildcard $(dir)/*.cpp)))
|
||||
SFILES := $(foreach dir,$(SOURCE),$(notdir $(wildcard $(dir)/*.S)))
|
||||
|
||||
ifeq ($(strip $(CXXFILES)),)
|
||||
export LD := $(CC)
|
||||
else
|
||||
export LD := $(CXX)
|
||||
endif
|
||||
|
||||
export OFILES := $(CFILES:.c=.o) \
|
||||
$(CXXFILES:.cpp=.o) \
|
||||
$(SFILES:.S=.o)
|
||||
export INCLUDES := $(foreach dir,$(INCLUDE),-I$(ROOT)/$(dir)) \
|
||||
-I$(ROOT)/$(BUILD)
|
||||
|
||||
.PHONY: $(BUILD) clean
|
||||
|
||||
$(BUILD):
|
||||
@[ -d $@ ] || mkdir -p $@
|
||||
@$(MAKE) --no-print-directory -C $(BUILD) -f $(ROOT)/Makefile
|
||||
|
||||
clean:
|
||||
@echo "[RM] $(notdir $(OUTPUT))"
|
||||
@rm -rf $(BUILD) $(OUTPUT).elf $(OUTPUT).rpx $(OUTPUT).a
|
||||
|
||||
else
|
||||
|
||||
DEPENDS := $(OFILES:.o=.d)
|
||||
|
||||
$(OUTPUT).rpx: $(OUTPUT).elf
|
||||
$(OUTPUT).elf: $(OFILES)
|
||||
|
||||
-include $(DEPENDS)
|
||||
|
||||
endif
|
11
tools/CMakeLists.txt
Normal file
11
tools/CMakeLists.txt
Normal file
@ -0,0 +1,11 @@
|
||||
cmake_minimum_required(VERSION 3.2)
|
||||
project(wut-tools)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
include_directories("common")
|
||||
|
||||
add_subdirectory(ext)
|
||||
|
||||
add_subdirectory(elf2rpl)
|
||||
add_subdirectory(readrpl)
|
||||
add_subdirectory(implcheck)
|
@ -1,51 +0,0 @@
|
||||
.SUFFIXES:
|
||||
|
||||
TARGETS := elf2rpl readrpl implcheck
|
||||
|
||||
ifeq ($(OS),Windows_NT)
|
||||
all:
|
||||
ifeq (, $(shell which msbuild 2> /dev/null))
|
||||
$(warning "msbuild not found, try building with make-tools.bat from a vcvars prompt.")
|
||||
else
|
||||
$(shell msbuild tools/tools.sln /p:Configuration=Release)
|
||||
endif
|
||||
|
||||
clean:
|
||||
ifeq (, $(shell which msbuild 2> /dev/null))
|
||||
$(shell msbuild tools/tools.sln /p:Configuration=Release /target:Clean)
|
||||
else
|
||||
$(warning "msbuild not found, try building with make-tools.bat from a vcvars prompt.")
|
||||
endif
|
||||
|
||||
install: all
|
||||
@mkdir -p $(INSTALLDIR)/bin
|
||||
@for dir in $(TARGETS); do \
|
||||
echo Installing $$dir; \
|
||||
cp bin/$$dir $(INSTALLDIR)/bin; \
|
||||
done
|
||||
|
||||
else
|
||||
all:
|
||||
@mkdir -p $(CURDIR)/bin
|
||||
@for dir in $(TARGETS); do \
|
||||
echo; \
|
||||
echo Entering Directory $$dir; \
|
||||
$(MAKE) --no-print-directory -C $$dir; \
|
||||
echo Leaving Directory $$dir; \
|
||||
done
|
||||
|
||||
clean:
|
||||
@for dir in $(TARGETS); do \
|
||||
echo Cleaning $$dir; \
|
||||
$(MAKE) --no-print-directory -C $$dir clean; \
|
||||
done
|
||||
|
||||
install: all
|
||||
@mkdir -p $(INSTALLDIR)/bin
|
||||
@for dir in $(TARGETS); do \
|
||||
echo Installing $$dir; \
|
||||
cp bin/$$dir $(INSTALLDIR)/bin; \
|
||||
done
|
||||
endif
|
||||
|
||||
.PHONY: all install clean
|
12
tools/elf2rpl/CMakeLists.txt
Normal file
12
tools/elf2rpl/CMakeLists.txt
Normal file
@ -0,0 +1,12 @@
|
||||
project(elf2rpl)
|
||||
|
||||
file(GLOB_RECURSE SOURCE_FILES *.cpp)
|
||||
file(GLOB_RECURSE HEADER_FILES *.h)
|
||||
|
||||
add_executable(elf2rpl ${SOURCE_FILES} ${HEADER_FILES})
|
||||
set_target_properties(elf2rpl PROPERTIES FOLDER tools)
|
||||
|
||||
target_link_libraries(elf2rpl PRIVATE
|
||||
${ZLIB_LINK})
|
||||
|
||||
install(TARGETS elf2rpl RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|
@ -1,26 +0,0 @@
|
||||
TARGET := ../bin/elf2rpl
|
||||
SOURCE := .
|
||||
INCLUDE := ../common
|
||||
|
||||
CXX := g++
|
||||
|
||||
CFILES := $(foreach dir,$(SOURCE),$(wildcard $(dir)/*.cpp))
|
||||
INCLUDES := $(foreach dir,$(INCLUDE),-I$(dir))
|
||||
|
||||
CFLAGS := -O2 -Wall --std=c++14
|
||||
LDFLAGS := -lz
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
clean:
|
||||
@echo "[RM] $(notdir $(TARGET))"
|
||||
@rm -rf $(TARGET)
|
||||
@rm -rf ../$(TARGET)
|
||||
|
||||
install: all
|
||||
@echo Installing $(TARGET)
|
||||
@cp $(TARGET) $(WUT_ROOT)/bin/$(TARGET)
|
||||
|
||||
$(TARGET): $(CFILES)
|
||||
@echo "[CXX] $(notdir $<)"
|
||||
@$(CXX) $(CFLAGS) $(INCLUDES) $< -o $@ $(LDFLAGS)
|
@ -1,172 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{F6442B08-9323-4D98-ABA6-8856467B148B}</ProjectGuid>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<RootNamespace>elf2rpl</RootNamespace>
|
||||
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<PlatformToolset>v140</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<PlatformToolset>v140</PlatformToolset>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<PlatformToolset>v140</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<PlatformToolset>v140</PlatformToolset>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="Shared">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)\bin\</OutDir>
|
||||
<IncludePath>$(SolutionDir)\ext\zlib;$(IncludePath)</IncludePath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)\bin\</OutDir>
|
||||
<IncludePath>$(SolutionDir)\ext\zlib;$(IncludePath)</IncludePath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)\bin\</OutDir>
|
||||
<IncludePath>$(SolutionDir)\ext\zlib;$(IncludePath)</IncludePath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)\bin\</OutDir>
|
||||
<IncludePath>$(SolutionDir)\ext\zlib;$(IncludePath)</IncludePath>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)\common;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)\common;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)\common;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<GenerateDebugInformation>No</GenerateDebugInformation>
|
||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)\common;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<GenerateDebugInformation>No</GenerateDebugInformation>
|
||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\ext\zlib\crc32.c" />
|
||||
<ClCompile Include="main.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common\be_val.h" />
|
||||
<ClInclude Include="..\common\elf.h" />
|
||||
<ClInclude Include="..\common\utils.h" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
@ -1,39 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Source Files">
|
||||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Header Files">
|
||||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Resource Files">
|
||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\ext">
|
||||
<UniqueIdentifier>{36d55ffd-f33d-437b-abc1-6e26a832efb3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="main.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\crc32.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common\be_val.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common\elf.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common\utils.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
92
tools/ext/CMakeLists.txt
Normal file
92
tools/ext/CMakeLists.txt
Normal file
@ -0,0 +1,92 @@
|
||||
project(libraries)
|
||||
include(ExternalProject)
|
||||
|
||||
# cppformat
|
||||
set(CPPFORMAT_DIR "cppformat")
|
||||
externalproject_add(cppformat
|
||||
SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/${CPPFORMAT_DIR}"
|
||||
CMAKE_CACHE_ARGS
|
||||
-DCMAKE_C_COMPILER:string=${CMAKE_C_COMPILER}
|
||||
-DCMAKE_C_FLAGS:string=${CMAKE_C_FLAGS}
|
||||
-DCMAKE_CXX_COMPILER:string=${CMAKE_CXX_COMPILER}
|
||||
-DCMAKE_CXX_FLAGS:string=${CMAKE_CXX_FLAGS}
|
||||
-DFMT_DOC:string=off
|
||||
-DFMT_INSTALL:string=off
|
||||
-DFMT_TEST:string=off
|
||||
INSTALL_COMMAND "")
|
||||
externalproject_get_property(cppformat BINARY_DIR)
|
||||
set_target_properties(cppformat PROPERTIES FOLDER libraries)
|
||||
|
||||
if(MSVC)
|
||||
set(CPPFORMAT_IMPORTED_LOCATION
|
||||
IMPORTED_LOCATION_DEBUG "${BINARY_DIR}/Debug/${CMAKE_FIND_LIBRARY_PREFIXES}cppformat${CMAKE_FIND_LIBRARY_SUFFIXES}"
|
||||
IMPORTED_LOCATION_RELEASE "${BINARY_DIR}/Release/${CMAKE_FIND_LIBRARY_PREFIXES}cppformat${CMAKE_FIND_LIBRARY_SUFFIXES}"
|
||||
IMPORTED_LOCATION_RELWITHDEBINFO "${BINARY_DIR}/RelWithDebInfo/${CMAKE_FIND_LIBRARY_PREFIXES}cppformat${CMAKE_FIND_LIBRARY_SUFFIXES}"
|
||||
IMPORTED_LOCATION_MINSIZEREL "${BINARY_DIR}/MinSizeRel/${CMAKE_FIND_LIBRARY_PREFIXES}cppformat${CMAKE_FIND_LIBRARY_SUFFIXES}")
|
||||
else()
|
||||
set(CPPFORMAT_IMPORTED_LOCATION
|
||||
IMPORTED_LOCATION "${BINARY_DIR}/${CMAKE_FIND_LIBRARY_PREFIXES}cppformat.a")
|
||||
endif()
|
||||
|
||||
add_library(cppformat_import STATIC IMPORTED GLOBAL)
|
||||
add_dependencies(cppformat_import cppformat)
|
||||
set_target_properties(cppformat_import PROPERTIES ${CPPFORMAT_IMPORTED_LOCATION})
|
||||
|
||||
add_library(cppformat_final INTERFACE)
|
||||
target_include_directories(cppformat_final INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/${CPPFORMAT_DIR}")
|
||||
target_link_libraries(cppformat_final INTERFACE cppformat_import)
|
||||
set(CPPFORMAT_LINK cppformat_final PARENT_SCOPE)
|
||||
|
||||
# excmd
|
||||
set(EXCMD_DIR "excmd")
|
||||
add_library(excmd INTERFACE)
|
||||
target_include_directories(excmd INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/${EXCMD_DIR}/src")
|
||||
set(EXCMD_LINK excmd PARENT_SCOPE)
|
||||
|
||||
# zlib
|
||||
find_package(ZLIB QUIET)
|
||||
|
||||
if(NOT ZLIB_FOUND)
|
||||
set(ZLIB_DIR "zlib")
|
||||
externalproject_add(zlib
|
||||
SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/${ZLIB_DIR}"
|
||||
PATCH_COMMAND ${CMAKE_COMMAND} -E remove <SOURCE_DIR>/zconf.h
|
||||
CMAKE_CACHE_ARGS
|
||||
-DCMAKE_C_COMPILER:string=${CMAKE_C_COMPILER}
|
||||
-DCMAKE_C_FLAGS:string=${CMAKE_C_FLAGS}
|
||||
-DCMAKE_CXX_COMPILER:string=${CMAKE_CXX_COMPILER}
|
||||
-DCMAKE_CXX_FLAGS:string=${CMAKE_CXX_FLAGS}
|
||||
-DBUILD_SHARED_LIBS:string=off
|
||||
INSTALL_COMMAND ""
|
||||
)
|
||||
externalproject_get_property(zlib BINARY_DIR)
|
||||
externalproject_add_step(zlib
|
||||
copy_to_binary
|
||||
DEPENDEES build
|
||||
DEPENDERS install
|
||||
COMMAND ${CMAKE_COMMAND} -E copy_directory "${BINARY_DIR}/$(Configuration)" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/$(Configuration)")
|
||||
set_target_properties(zlib PROPERTIES FOLDER libraries)
|
||||
|
||||
if(MSVC)
|
||||
set(ZLIB_IMPORTED_LOCATION
|
||||
IMPORTED_LOCATION_DEBUG "${BINARY_DIR}/Debug/${CMAKE_FIND_LIBRARY_PREFIXES}zlibdstatic${CMAKE_FIND_LIBRARY_SUFFIXES}"
|
||||
IMPORTED_LOCATION_RELEASE "${BINARY_DIR}/Release/${CMAKE_FIND_LIBRARY_PREFIXES}zlibstatic${CMAKE_FIND_LIBRARY_SUFFIXES}"
|
||||
IMPORTED_LOCATION_RELWITHDEBINFO "${BINARY_DIR}/RelWithDebInfo/${CMAKE_FIND_LIBRARY_PREFIXES}zlibstatic${CMAKE_FIND_LIBRARY_SUFFIXES}"
|
||||
IMPORTED_LOCATION_MINSIZEREL "${BINARY_DIR}/MinSizeRel/${CMAKE_FIND_LIBRARY_PREFIXES}zlibstatic${CMAKE_FIND_LIBRARY_SUFFIXES}")
|
||||
else()
|
||||
set(ZLIB_IMPORTED_LOCATION
|
||||
IMPORTED_LOCATION "${BINARY_DIR}/${CMAKE_FIND_LIBRARY_PREFIXES}z.a")
|
||||
endif()
|
||||
|
||||
add_library(zlib_import STATIC IMPORTED GLOBAL)
|
||||
add_dependencies(zlib_import zlib)
|
||||
set_target_properties(zlib_import PROPERTIES ${ZLIB_IMPORTED_LOCATION})
|
||||
|
||||
set(ZLIB_LIBRARIES zlib_import)
|
||||
set(ZLIB_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/${ZLIB_DIR} ${BINARY_DIR})
|
||||
endif()
|
||||
|
||||
add_library(zlib_final INTERFACE)
|
||||
target_include_directories(zlib_final INTERFACE ${ZLIB_INCLUDE_DIRS})
|
||||
target_link_libraries(zlib_final INTERFACE ${ZLIB_LIBRARIES})
|
||||
set(ZLIB_LINK zlib_final PARENT_SCOPE)
|
14
tools/implcheck/CMakeLists.txt
Normal file
14
tools/implcheck/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
project(implcheck)
|
||||
|
||||
file(GLOB_RECURSE SOURCE_FILES *.cpp)
|
||||
file(GLOB_RECURSE HEADER_FILES *.h)
|
||||
|
||||
add_executable(implcheck ${SOURCE_FILES} ${HEADER_FILES})
|
||||
set_target_properties(implcheck PROPERTIES FOLDER tools)
|
||||
|
||||
target_link_libraries(implcheck PRIVATE
|
||||
${CPPFORMAT_LINK}
|
||||
${EXCMD_LINK}
|
||||
${ZLIB_LINK})
|
||||
|
||||
install(TARGETS implcheck RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|
@ -1,28 +0,0 @@
|
||||
TARGET := ../bin/implcheck
|
||||
SOURCE := .
|
||||
INCLUDE := ../common ../ext/cppformat ../ext/excmd/src
|
||||
|
||||
CXX := g++
|
||||
|
||||
CPPFORMATSRC := ../ext/cppformat/format.cc
|
||||
|
||||
CFILES := $(foreach dir,$(SOURCE),$(wildcard $(dir)/*.cpp))
|
||||
INCLUDES := $(foreach dir,$(INCLUDE),-I$(dir))
|
||||
|
||||
CFLAGS := -O2 -Wall --std=c++14
|
||||
LDFLAGS := -lz
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
clean:
|
||||
@echo "[RM] $(notdir $(TARGET))"
|
||||
@rm -rf $(TARGET)
|
||||
@rm -rf ../$(TARGET)
|
||||
|
||||
install: all
|
||||
@echo Installing $(TARGET)
|
||||
@cp $(TARGET) $(WUT_ROOT)/bin/$(TARGET)
|
||||
|
||||
$(TARGET): $(CFILES)
|
||||
@echo "[CXX] $(notdir $<)"
|
||||
@$(CXX) $(CFLAGS) $(INCLUDES) $< -o $@ $(LDFLAGS) $(CPPFORMATSRC)
|
@ -1,164 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{08008ADA-439B-4852-8102-40A8D6EDB46D}</ProjectGuid>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<RootNamespace>implcheck</RootNamespace>
|
||||
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<PlatformToolset>v140</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<PlatformToolset>v140</PlatformToolset>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<PlatformToolset>v140</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<PlatformToolset>v140</PlatformToolset>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="Shared">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)\bin\</OutDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)\bin\</OutDir>
|
||||
<IncludePath>$(SolutionDir)\common;$(SolutionDir)\ext\cppformat;$(SolutionDir)\ext\excmd\src;$(SolutionDir)\ext\zlib;$(IncludePath)</IncludePath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)\bin\</OutDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)\bin\</OutDir>
|
||||
<IncludePath>$(SolutionDir)\common;$(SolutionDir)\ext\cppformat;$(SolutionDir)\ext\excmd\src;$(SolutionDir)\ext\zlib;$(IncludePath)</IncludePath>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<GenerateDebugInformation>No</GenerateDebugInformation>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<GenerateDebugInformation>No</GenerateDebugInformation>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\ext\zlib\adler32.c" />
|
||||
<ClCompile Include="..\ext\zlib\crc32.c" />
|
||||
<ClCompile Include="..\ext\zlib\infback.c" />
|
||||
<ClCompile Include="..\ext\zlib\inffast.c" />
|
||||
<ClCompile Include="..\ext\zlib\inflate.c" />
|
||||
<ClCompile Include="..\ext\zlib\inftrees.c" />
|
||||
<ClCompile Include="..\ext\zlib\uncompr.c" />
|
||||
<ClCompile Include="..\ext\zlib\zutil.c" />
|
||||
<ClCompile Include="main.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
@ -1,49 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Source Files">
|
||||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Header Files">
|
||||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Resource Files">
|
||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\ext">
|
||||
<UniqueIdentifier>{d98b1134-aad7-462b-9790-a12b0f037971}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="main.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\inflate.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\adler32.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\crc32.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\infback.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\inffast.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\inftrees.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\uncompr.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\zutil.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
</Project>
|
14
tools/readrpl/CMakeLists.txt
Normal file
14
tools/readrpl/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
project(readrpl)
|
||||
|
||||
file(GLOB_RECURSE SOURCE_FILES *.cpp)
|
||||
file(GLOB_RECURSE HEADER_FILES *.h)
|
||||
|
||||
add_executable(readrpl ${SOURCE_FILES} ${HEADER_FILES})
|
||||
set_target_properties(readrpl PROPERTIES FOLDER tools)
|
||||
|
||||
target_link_libraries(readrpl PRIVATE
|
||||
${CPPFORMAT_LINK}
|
||||
${EXCMD_LINK}
|
||||
${ZLIB_LINK})
|
||||
|
||||
install(TARGETS readrpl RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|
@ -1,28 +0,0 @@
|
||||
TARGET := ../bin/readrpl
|
||||
SOURCE := .
|
||||
INCLUDE := ../common ../ext/cppformat ../ext/excmd/src
|
||||
|
||||
CXX := g++
|
||||
|
||||
CPPFORMATSRC := ../ext/cppformat/format.cc
|
||||
|
||||
CFILES := $(foreach dir,$(SOURCE),$(wildcard $(dir)/*.cpp))
|
||||
INCLUDES := $(foreach dir,$(INCLUDE),-I$(dir))
|
||||
|
||||
CFLAGS := -O2 -Wall --std=c++14
|
||||
LDFLAGS := -lz
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
clean:
|
||||
@echo "[RM] $(notdir $(TARGET))"
|
||||
@rm -rf $(TARGET)
|
||||
@rm -rf ../$(TARGET)
|
||||
|
||||
install: all
|
||||
@echo Installing $(TARGET)
|
||||
@cp $(TARGET) $(WUT_ROOT)/bin/$(TARGET)
|
||||
|
||||
$(TARGET): $(CFILES)
|
||||
@echo "[CXX] $(notdir $<)"
|
||||
@$(CXX) $(CFLAGS) $(INCLUDES) $< -o $@ $(LDFLAGS) $(CPPFORMATSRC)
|
@ -1,181 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{F6442B08-9323-4D98-ABA6-8856467B148A}</ProjectGuid>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<RootNamespace>readrpl</RootNamespace>
|
||||
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<PlatformToolset>v140</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<PlatformToolset>v140</PlatformToolset>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<PlatformToolset>v140</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<PlatformToolset>v140</PlatformToolset>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="Shared">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)\bin\</OutDir>
|
||||
<IncludePath>$(SolutionDir)\common;$(SolutionDir)\ext\cppformat;$(SolutionDir)\ext\excmd\src;$(SolutionDir)\ext\zlib;$(IncludePath)</IncludePath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)\bin\</OutDir>
|
||||
<IncludePath>$(SolutionDir)\common;$(SolutionDir)\ext\cppformat;$(SolutionDir)\ext\excmd\src;$(SolutionDir)\ext\zlib;$(IncludePath)</IncludePath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)\bin\</OutDir>
|
||||
<IncludePath>$(SolutionDir)\common;$(SolutionDir)\ext\cppformat;$(SolutionDir)\ext\excmd\src;$(SolutionDir)\ext\zlib;$(IncludePath)</IncludePath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<OutDir>$(SolutionDir)\bin\</OutDir>
|
||||
<IncludePath>$(SolutionDir)\common;$(SolutionDir)\ext\cppformat;$(SolutionDir)\ext\excmd\src;$(SolutionDir)\ext\zlib;$(IncludePath)</IncludePath>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<GenerateDebugInformation>No</GenerateDebugInformation>
|
||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<GenerateDebugInformation>No</GenerateDebugInformation>
|
||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\ext\cppformat\format.cc" />
|
||||
<ClCompile Include="..\ext\zlib\adler32.c" />
|
||||
<ClCompile Include="..\ext\zlib\crc32.c" />
|
||||
<ClCompile Include="..\ext\zlib\infback.c" />
|
||||
<ClCompile Include="..\ext\zlib\inffast.c" />
|
||||
<ClCompile Include="..\ext\zlib\inflate.c" />
|
||||
<ClCompile Include="..\ext\zlib\inftrees.c" />
|
||||
<ClCompile Include="..\ext\zlib\trees.c" />
|
||||
<ClCompile Include="..\ext\zlib\uncompr.c" />
|
||||
<ClCompile Include="..\ext\zlib\zutil.c" />
|
||||
<ClCompile Include="main.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common\be_val.h" />
|
||||
<ClInclude Include="..\common\elf.h" />
|
||||
<ClInclude Include="..\common\utils.h" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
@ -1,66 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Source Files">
|
||||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Header Files">
|
||||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Resource Files">
|
||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\ext">
|
||||
<UniqueIdentifier>{0cbae63d-c3bb-4e36-bec9-33cd38503112}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="main.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\cppformat\format.cc">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\crc32.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\inflate.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\adler32.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\infback.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\inffast.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\inftrees.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\trees.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\uncompr.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\ext\zlib\zutil.c">
|
||||
<Filter>Source Files\ext</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\common\be_val.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common\elf.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common\utils.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -1,48 +0,0 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 14
|
||||
VisualStudioVersion = 14.0.24720.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "elf2rpl", "elf2rpl\elf2rpl.vcxproj", "{F6442B08-9323-4D98-ABA6-8856467B148B}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "readrpl", "readrpl\readrpl.vcxproj", "{F6442B08-9323-4D98-ABA6-8856467B148A}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "implcheck", "implcheck\implcheck.vcxproj", "{08008ADA-439B-4852-8102-40A8D6EDB46D}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|x64 = Debug|x64
|
||||
Debug|x86 = Debug|x86
|
||||
Release|x64 = Release|x64
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{F6442B08-9323-4D98-ABA6-8856467B148B}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{F6442B08-9323-4D98-ABA6-8856467B148B}.Debug|x64.Build.0 = Debug|x64
|
||||
{F6442B08-9323-4D98-ABA6-8856467B148B}.Debug|x86.ActiveCfg = Debug|Win32
|
||||
{F6442B08-9323-4D98-ABA6-8856467B148B}.Debug|x86.Build.0 = Debug|Win32
|
||||
{F6442B08-9323-4D98-ABA6-8856467B148B}.Release|x64.ActiveCfg = Release|x64
|
||||
{F6442B08-9323-4D98-ABA6-8856467B148B}.Release|x64.Build.0 = Release|x64
|
||||
{F6442B08-9323-4D98-ABA6-8856467B148B}.Release|x86.ActiveCfg = Release|Win32
|
||||
{F6442B08-9323-4D98-ABA6-8856467B148B}.Release|x86.Build.0 = Release|Win32
|
||||
{F6442B08-9323-4D98-ABA6-8856467B148A}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{F6442B08-9323-4D98-ABA6-8856467B148A}.Debug|x64.Build.0 = Debug|x64
|
||||
{F6442B08-9323-4D98-ABA6-8856467B148A}.Debug|x86.ActiveCfg = Debug|Win32
|
||||
{F6442B08-9323-4D98-ABA6-8856467B148A}.Debug|x86.Build.0 = Debug|Win32
|
||||
{F6442B08-9323-4D98-ABA6-8856467B148A}.Release|x64.ActiveCfg = Release|x64
|
||||
{F6442B08-9323-4D98-ABA6-8856467B148A}.Release|x64.Build.0 = Release|x64
|
||||
{F6442B08-9323-4D98-ABA6-8856467B148A}.Release|x86.ActiveCfg = Release|Win32
|
||||
{F6442B08-9323-4D98-ABA6-8856467B148A}.Release|x86.Build.0 = Release|Win32
|
||||
{08008ADA-439B-4852-8102-40A8D6EDB46D}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{08008ADA-439B-4852-8102-40A8D6EDB46D}.Debug|x64.Build.0 = Debug|x64
|
||||
{08008ADA-439B-4852-8102-40A8D6EDB46D}.Debug|x86.ActiveCfg = Debug|Win32
|
||||
{08008ADA-439B-4852-8102-40A8D6EDB46D}.Debug|x86.Build.0 = Debug|Win32
|
||||
{08008ADA-439B-4852-8102-40A8D6EDB46D}.Release|x64.ActiveCfg = Release|x64
|
||||
{08008ADA-439B-4852-8102-40A8D6EDB46D}.Release|x64.Build.0 = Release|x64
|
||||
{08008ADA-439B-4852-8102-40A8D6EDB46D}.Release|x86.ActiveCfg = Release|Win32
|
||||
{08008ADA-439B-4852-8102-40A8D6EDB46D}.Release|x86.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
Loading…
Reference in New Issue
Block a user