Remove all old build systems
This commit is contained in:
23
Makefile
23
Makefile
@@ -1,23 +0,0 @@
|
|||||||
#
|
|
||||||
# wiiuse Makefile
|
|
||||||
#
|
|
||||||
|
|
||||||
all clean install:
|
|
||||||
@$(MAKE) -C src $@
|
|
||||||
@$(MAKE) -C example $@
|
|
||||||
@$(MAKE) -C example-sdl $@
|
|
||||||
|
|
||||||
wiiuse:
|
|
||||||
@$(MAKE) -C src
|
|
||||||
|
|
||||||
ex:
|
|
||||||
@$(MAKE) -C example
|
|
||||||
|
|
||||||
sdl-ex:
|
|
||||||
@$(MAKE) -C example-sdl
|
|
||||||
|
|
||||||
distclean:
|
|
||||||
@$(MAKE) -C src $@
|
|
||||||
@$(MAKE) -C example $@
|
|
||||||
@$(MAKE) -C example-sdl $@
|
|
||||||
@find . -type f \( -name "*.save" -or -name "*~" -or -name gmon.out \) -delete &> /dev/null
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
#! make
|
|
||||||
#
|
|
||||||
# Automatically generate PDF, PNG, and JPG files from DOT files.
|
|
||||||
#
|
|
||||||
# Original Author:
|
|
||||||
# 2009 Ryan Pavlik <rpavlik@iastate.edu>
|
|
||||||
# http://academic.cleardefinition.com
|
|
||||||
# Iowa State University HCI Graduate Program/VRAC
|
|
||||||
|
|
||||||
pdfs := $(patsubst %.dot,%.pdf,$(wildcard *.dot))
|
|
||||||
pngs := $(patsubst %.dot,%.png,$(wildcard *.dot))
|
|
||||||
jpgs := $(patsubst %.dot,%.jpg,$(wildcard *.dot))
|
|
||||||
|
|
||||||
all: $(pdfs) $(pngs) $(jpgs)
|
|
||||||
pdf: $(pdfs)
|
|
||||||
png: $(pngs)
|
|
||||||
jpg: $(jpgs)
|
|
||||||
|
|
||||||
clean:
|
|
||||||
-rm -f $(pdfs) $(pngs) $(jpgs)
|
|
||||||
realclean: clean
|
|
||||||
-rm -f *~
|
|
||||||
|
|
||||||
.PHONY: all pdf png jpg clean realclean
|
|
||||||
|
|
||||||
$(pdfs): %.pdf: %.dot
|
|
||||||
dot -Tpdf $< -o$@
|
|
||||||
|
|
||||||
$(pngs): %.png: %.dot
|
|
||||||
dot -Tpng $< -o$@
|
|
||||||
|
|
||||||
$(jpgs): %.jpg: %.dot
|
|
||||||
dot -Tjpg $< -o$@
|
|
||||||
|
|
||||||
@@ -1,83 +0,0 @@
|
|||||||
#
|
|
||||||
# wiiuse Makefile
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# Change this to your GCC version.
|
|
||||||
#
|
|
||||||
CC = gcc
|
|
||||||
|
|
||||||
####################################################
|
|
||||||
#
|
|
||||||
# You should not need to edit below this line.
|
|
||||||
#
|
|
||||||
####################################################
|
|
||||||
|
|
||||||
#
|
|
||||||
# Universal cflags
|
|
||||||
#
|
|
||||||
CFLAGS = -Wall -pipe -fPIC -funroll-loops
|
|
||||||
|
|
||||||
ifeq ($(debug),1)
|
|
||||||
OBJ_PREFIX = debug
|
|
||||||
CFLAGS += -g -pg -DWITH_WIIUSE_DEBUG
|
|
||||||
else
|
|
||||||
OBJ_PREFIX = release
|
|
||||||
CFLAGS += -O2
|
|
||||||
endif
|
|
||||||
|
|
||||||
OBJ_DIR = $(OBJ_PREFIX)-$(shell $(CC) -v 2>&1|grep ^Target:|cut -d' ' -f2)
|
|
||||||
|
|
||||||
#
|
|
||||||
# Linking flags
|
|
||||||
#
|
|
||||||
LDFLAGS = -L../src/$(OBJ_DIR) -lm -lGL -lGLU -lglut -lSDL -lbluetooth -lwiiuse
|
|
||||||
|
|
||||||
#
|
|
||||||
# Target binaries (always created as BIN)
|
|
||||||
#
|
|
||||||
BIN = ./$(OBJ_DIR)/wiiuse-sdl
|
|
||||||
|
|
||||||
#
|
|
||||||
# Inclusion paths.
|
|
||||||
#
|
|
||||||
INCLUDES = -I../src/ -I/usr/include/SDL
|
|
||||||
|
|
||||||
#
|
|
||||||
# Generate a list of object files
|
|
||||||
#
|
|
||||||
OBJS = $(OBJ_DIR)/sdl.o
|
|
||||||
|
|
||||||
###############################
|
|
||||||
#
|
|
||||||
# Build targets.
|
|
||||||
#
|
|
||||||
###############################
|
|
||||||
|
|
||||||
all: $(BIN)
|
|
||||||
|
|
||||||
clean:
|
|
||||||
@-rm $(OBJS) 2> /dev/null
|
|
||||||
|
|
||||||
distclean: clean
|
|
||||||
@-rm -r debug-* release-* 2> /dev/null
|
|
||||||
|
|
||||||
install:
|
|
||||||
@if [ -e $(BIN) ]; then \
|
|
||||||
cp -v $(BIN) /usr/bin ;\
|
|
||||||
fi
|
|
||||||
|
|
||||||
$(BIN): mkdir $(OBJS)
|
|
||||||
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $(BIN)
|
|
||||||
|
|
||||||
$(OBJ_DIR)/%.o: %.c
|
|
||||||
$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
|
|
||||||
|
|
||||||
mkdir:
|
|
||||||
@if [ ! -d $(OBJ_DIR) ]; then \
|
|
||||||
mkdir $(OBJ_DIR); \
|
|
||||||
fi
|
|
||||||
|
|
||||||
run: all
|
|
||||||
LD_LIBRARY_PATH=`pwd`/../src/$(OBJ_DIR):$(LD_LIBRARY_PATH) $(BIN)
|
|
||||||
|
|
||||||
@@ -1,111 +0,0 @@
|
|||||||
# Microsoft Developer Studio Project File - Name="wiiusesdl" - Package Owner=<4>
|
|
||||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
|
||||||
# ** DO NOT EDIT **
|
|
||||||
|
|
||||||
# TARGTYPE "Win32 (x86) Application" 0x0101
|
|
||||||
|
|
||||||
CFG=wiiusesdl - Win32 Debug
|
|
||||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
|
||||||
!MESSAGE use the Export Makefile command and run
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "wiiusesdl.mak".
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE You can specify a configuration when running NMAKE
|
|
||||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "wiiusesdl.mak" CFG="wiiusesdl - Win32 Debug"
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE Possible choices for configuration are:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE "wiiusesdl - Win32 Release" (based on "Win32 (x86) Application")
|
|
||||||
!MESSAGE "wiiusesdl - Win32 Debug" (based on "Win32 (x86) Application")
|
|
||||||
!MESSAGE
|
|
||||||
|
|
||||||
# Begin Project
|
|
||||||
# PROP AllowPerConfigDependencies 0
|
|
||||||
# PROP Scc_ProjName ""
|
|
||||||
# PROP Scc_LocalPath ""
|
|
||||||
CPP=cl.exe
|
|
||||||
MTL=midl.exe
|
|
||||||
RSC=rc.exe
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "wiiusesdl - Win32 Release"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 0
|
|
||||||
# PROP BASE Output_Dir "Release"
|
|
||||||
# PROP BASE Intermediate_Dir "Release"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 0
|
|
||||||
# PROP Output_Dir "Release"
|
|
||||||
# PROP Intermediate_Dir "Release"
|
|
||||||
# PROP Ignore_Export_Lib 0
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c
|
|
||||||
# ADD CPP /nologo /W3 /GX /O2 /I "..\..\src" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c
|
|
||||||
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
|
||||||
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
|
||||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
|
||||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
LINK32=link.exe
|
|
||||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386
|
|
||||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib sdl.lib opengl32.lib glu32.lib wiiuse.lib /nologo /subsystem:windows /machine:I386
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "wiiusesdl - Win32 Debug"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 1
|
|
||||||
# PROP BASE Output_Dir "Debug"
|
|
||||||
# PROP BASE Intermediate_Dir "Debug"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 1
|
|
||||||
# PROP Output_Dir "Debug"
|
|
||||||
# PROP Intermediate_Dir "Debug"
|
|
||||||
# PROP Ignore_Export_Lib 0
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c
|
|
||||||
# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "..\..\src" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c
|
|
||||||
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
|
||||||
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
|
||||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
|
||||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
LINK32=link.exe
|
|
||||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
|
|
||||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib sdl.lib opengl32.lib glu32.lib wiiuse.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# Begin Target
|
|
||||||
|
|
||||||
# Name "wiiusesdl - Win32 Release"
|
|
||||||
# Name "wiiusesdl - Win32 Debug"
|
|
||||||
# Begin Group "Source Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\sdl.c
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# Begin Group "Header Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\wiiuse.h
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# Begin Group "Resource Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
|
||||||
# End Group
|
|
||||||
# End Target
|
|
||||||
# End Project
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
|
||||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Project: "wiiusesdl"=".\wiiusesdl.dsp" - Package Owner=<4>
|
|
||||||
|
|
||||||
Package=<5>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
Package=<4>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Global:
|
|
||||||
|
|
||||||
Package=<5>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
Package=<3>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,84 +0,0 @@
|
|||||||
#
|
|
||||||
# wiiuse Makefile
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# Change this to your GCC version.
|
|
||||||
#
|
|
||||||
CC = gcc
|
|
||||||
|
|
||||||
####################################################
|
|
||||||
#
|
|
||||||
# You should not need to edit below this line.
|
|
||||||
#
|
|
||||||
####################################################
|
|
||||||
|
|
||||||
#
|
|
||||||
# Universal cflags
|
|
||||||
#
|
|
||||||
CFLAGS = -Wall -pipe -fPIC -funroll-loops
|
|
||||||
|
|
||||||
ifeq ($(debug),1)
|
|
||||||
OBJ_PREFIX = debug
|
|
||||||
CFLAGS += -g -pg -DWITH_WIIUSE_DEBUG
|
|
||||||
else
|
|
||||||
OBJ_PREFIX = release
|
|
||||||
CFLAGS += -O2
|
|
||||||
endif
|
|
||||||
|
|
||||||
OBJ_DIR = $(OBJ_PREFIX)-$(shell $(CC) -v 2>&1|grep ^Target:|cut -d' ' -f2)
|
|
||||||
|
|
||||||
#
|
|
||||||
# Linking flags
|
|
||||||
#
|
|
||||||
LDFLAGS = -L../src/$(OBJ_DIR) -lm -lwiiuse
|
|
||||||
|
|
||||||
#
|
|
||||||
# Target binaries (always created as BIN)
|
|
||||||
#
|
|
||||||
BIN = ./$(OBJ_DIR)/wiiuse-example
|
|
||||||
|
|
||||||
#
|
|
||||||
# Inclusion paths.
|
|
||||||
#
|
|
||||||
INCLUDES = -I../src/
|
|
||||||
|
|
||||||
#
|
|
||||||
# Generate a list of object files
|
|
||||||
#
|
|
||||||
OBJS = $(OBJ_DIR)/example.o
|
|
||||||
|
|
||||||
###############################
|
|
||||||
#
|
|
||||||
# Build targets.
|
|
||||||
#
|
|
||||||
###############################
|
|
||||||
|
|
||||||
all: $(BIN)
|
|
||||||
|
|
||||||
clean:
|
|
||||||
@-rm $(OBJS) 2> /dev/null
|
|
||||||
|
|
||||||
distclean:
|
|
||||||
@-rm -r debug-* release-* 2> /dev/null
|
|
||||||
|
|
||||||
install:
|
|
||||||
@if [ -e $(BIN) ]; then \
|
|
||||||
cp -v $(BIN) /usr/bin ; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
$(BIN): mkdir $(OBJS)
|
|
||||||
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $(BIN)
|
|
||||||
|
|
||||||
$(OBJ_DIR)/%.o: %.c
|
|
||||||
$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
|
|
||||||
|
|
||||||
mkdir:
|
|
||||||
@if [ ! -d $(OBJ_DIR) ]; then \
|
|
||||||
mkdir $(OBJ_DIR); \
|
|
||||||
fi
|
|
||||||
|
|
||||||
run: all
|
|
||||||
LD_LIBRARY_PATH=`pwd`/../src/$(OBJ_DIR):$(LD_LIBRARY_PATH) $(BIN)
|
|
||||||
|
|
||||||
@@ -1,106 +0,0 @@
|
|||||||
# Microsoft Developer Studio Project File - Name="wiiuseexample" - Package Owner=<4>
|
|
||||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
|
||||||
# ** DO NOT EDIT **
|
|
||||||
|
|
||||||
# TARGTYPE "Win32 (x86) Console Application" 0x0103
|
|
||||||
|
|
||||||
CFG=wiiuseexample - Win32 Debug
|
|
||||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
|
||||||
!MESSAGE use the Export Makefile command and run
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "wiiuseexample.mak".
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE You can specify a configuration when running NMAKE
|
|
||||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "wiiuseexample.mak" CFG="wiiuseexample - Win32 Debug"
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE Possible choices for configuration are:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE "wiiuseexample - Win32 Release" (based on "Win32 (x86) Console Application")
|
|
||||||
!MESSAGE "wiiuseexample - Win32 Debug" (based on "Win32 (x86) Console Application")
|
|
||||||
!MESSAGE
|
|
||||||
|
|
||||||
# Begin Project
|
|
||||||
# PROP AllowPerConfigDependencies 0
|
|
||||||
# PROP Scc_ProjName ""
|
|
||||||
# PROP Scc_LocalPath ""
|
|
||||||
CPP=cl.exe
|
|
||||||
RSC=rc.exe
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "wiiuseexample - Win32 Release"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 0
|
|
||||||
# PROP BASE Output_Dir "Release"
|
|
||||||
# PROP BASE Intermediate_Dir "Release"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 0
|
|
||||||
# PROP Output_Dir "Release"
|
|
||||||
# PROP Intermediate_Dir "Release"
|
|
||||||
# PROP Ignore_Export_Lib 0
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
|
||||||
# ADD CPP /nologo /W3 /GX /O2 /I "..\..\src" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
|
||||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
|
||||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
LINK32=link.exe
|
|
||||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
|
|
||||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib wiiuse.lib /nologo /subsystem:console /machine:I386
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "wiiuseexample - Win32 Debug"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 1
|
|
||||||
# PROP BASE Output_Dir "Debug"
|
|
||||||
# PROP BASE Intermediate_Dir "Debug"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 1
|
|
||||||
# PROP Output_Dir "Debug"
|
|
||||||
# PROP Intermediate_Dir "Debug"
|
|
||||||
# PROP Ignore_Export_Lib 0
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
|
||||||
# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "..\..\src" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
|
||||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
|
||||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
LINK32=link.exe
|
|
||||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
|
||||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# Begin Target
|
|
||||||
|
|
||||||
# Name "wiiuseexample - Win32 Release"
|
|
||||||
# Name "wiiuseexample - Win32 Debug"
|
|
||||||
# Begin Group "Source Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\example.c
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# Begin Group "Header Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\src\wiiuse.h
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# Begin Group "Resource Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
|
||||||
# End Group
|
|
||||||
# End Target
|
|
||||||
# End Project
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
|
||||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Project: "wiiuseexample"=".\wiiuseexample.dsp" - Package Owner=<4>
|
|
||||||
|
|
||||||
Package=<5>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
Package=<4>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Global:
|
|
||||||
|
|
||||||
Package=<5>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
Package=<3>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Binary file not shown.
Binary file not shown.
91
src/Makefile
91
src/Makefile
@@ -1,91 +0,0 @@
|
|||||||
#
|
|
||||||
# wiiuse Makefile
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# Change this to your GCC version.
|
|
||||||
#
|
|
||||||
CC = gcc
|
|
||||||
|
|
||||||
####################################################
|
|
||||||
#
|
|
||||||
# You should not need to edit below this line.
|
|
||||||
#
|
|
||||||
####################################################
|
|
||||||
|
|
||||||
#
|
|
||||||
# Universal cflags
|
|
||||||
#
|
|
||||||
CFLAGS = -Wall -pipe -fPIC -funroll-loops
|
|
||||||
|
|
||||||
ifeq ($(debug),1)
|
|
||||||
OBJ_PREFIX = debug
|
|
||||||
CFLAGS += -g -pg -DWITH_WIIUSE_DEBUG
|
|
||||||
|
|
||||||
else
|
|
||||||
OBJ_PREFIX = release
|
|
||||||
CFLAGS += -O2
|
|
||||||
endif
|
|
||||||
|
|
||||||
OBJ_DIR = $(OBJ_PREFIX)-$(shell $(CC) -v 2>&1|grep ^Target:|cut -d' ' -f2)
|
|
||||||
|
|
||||||
#
|
|
||||||
# Linking flags
|
|
||||||
#
|
|
||||||
LDFLAGS = -shared -lm -lbluetooth
|
|
||||||
|
|
||||||
#
|
|
||||||
# Target binaries (always created as BIN)
|
|
||||||
#
|
|
||||||
BIN = ./$(OBJ_DIR)/libwiiuse.so
|
|
||||||
|
|
||||||
#
|
|
||||||
# Inclusion paths.
|
|
||||||
#
|
|
||||||
INCLUDES = -I.
|
|
||||||
|
|
||||||
#
|
|
||||||
# Generate a list of object files
|
|
||||||
#
|
|
||||||
OBJS = \
|
|
||||||
$(OBJ_DIR)/classic.o \
|
|
||||||
$(OBJ_DIR)/dynamics.o \
|
|
||||||
$(OBJ_DIR)/events.o \
|
|
||||||
$(OBJ_DIR)/io.o \
|
|
||||||
$(OBJ_DIR)/io_nix.o \
|
|
||||||
$(OBJ_DIR)/ir.o \
|
|
||||||
$(OBJ_DIR)/nunchuk.o \
|
|
||||||
$(OBJ_DIR)/guitar_hero_3.o \
|
|
||||||
$(OBJ_DIR)/wiiuse.o
|
|
||||||
|
|
||||||
###############################
|
|
||||||
#
|
|
||||||
# Build targets.
|
|
||||||
#
|
|
||||||
###############################
|
|
||||||
|
|
||||||
all: $(BIN)
|
|
||||||
|
|
||||||
clean:
|
|
||||||
@-rm $(OBJS) 2> /dev/null
|
|
||||||
|
|
||||||
distclean:
|
|
||||||
@-rm -r debug-* release-* 2> /dev/null
|
|
||||||
|
|
||||||
install:
|
|
||||||
@if [ -e $(BIN) ]; then \
|
|
||||||
cp -v $(BIN) /usr/lib ; \
|
|
||||||
fi
|
|
||||||
@cp -v wiiuse.h /usr/include
|
|
||||||
|
|
||||||
$(BIN): mkdir $(OBJS)
|
|
||||||
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $(BIN)
|
|
||||||
|
|
||||||
$(OBJ_DIR)/%.o: %.c
|
|
||||||
$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
|
|
||||||
|
|
||||||
mkdir:
|
|
||||||
@if [ ! -d $(OBJ_DIR) ]; then \
|
|
||||||
mkdir $(OBJ_DIR); \
|
|
||||||
fi
|
|
||||||
|
|
||||||
@@ -1,191 +0,0 @@
|
|||||||
# Microsoft Developer Studio Project File - Name="wiiuse" - Package Owner=<4>
|
|
||||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
|
||||||
# ** DO NOT EDIT **
|
|
||||||
|
|
||||||
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
|
|
||||||
|
|
||||||
CFG=wiiuse - Win32 Debug
|
|
||||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
|
||||||
!MESSAGE use the Export Makefile command and run
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "wiiuse.mak".
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE You can specify a configuration when running NMAKE
|
|
||||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "wiiuse.mak" CFG="wiiuse - Win32 Debug"
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE Possible choices for configuration are:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE "wiiuse - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
|
|
||||||
!MESSAGE "wiiuse - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
|
|
||||||
!MESSAGE
|
|
||||||
|
|
||||||
# Begin Project
|
|
||||||
# PROP AllowPerConfigDependencies 0
|
|
||||||
# PROP Scc_ProjName ""
|
|
||||||
# PROP Scc_LocalPath ""
|
|
||||||
CPP=cl.exe
|
|
||||||
MTL=midl.exe
|
|
||||||
RSC=rc.exe
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "wiiuse - Win32 Release"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 0
|
|
||||||
# PROP BASE Output_Dir "Release"
|
|
||||||
# PROP BASE Intermediate_Dir "Release"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 0
|
|
||||||
# PROP Output_Dir "Release"
|
|
||||||
# PROP Intermediate_Dir "Release"
|
|
||||||
# PROP Ignore_Export_Lib 0
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIIUSE_EXPORTS" /YX /FD /c
|
|
||||||
# ADD CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIIUSE_EXPORTS" /YX /FD /c
|
|
||||||
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
|
||||||
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
|
||||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
|
||||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
LINK32=link.exe
|
|
||||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
|
|
||||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Ws2_32.lib hid.lib setupapi.lib /nologo /dll /machine:I386
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "wiiuse - Win32 Debug"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 1
|
|
||||||
# PROP BASE Output_Dir "Debug"
|
|
||||||
# PROP BASE Intermediate_Dir "Debug"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 1
|
|
||||||
# PROP Output_Dir "Debug"
|
|
||||||
# PROP Intermediate_Dir "Debug"
|
|
||||||
# PROP Ignore_Export_Lib 0
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIIUSE_EXPORTS" /YX /FD /GZ /c
|
|
||||||
# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIIUSE_EXPORTS" /D "WITH_WIIUSE_DEBUG" /YX /FD /GZ /c
|
|
||||||
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
|
||||||
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
|
||||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
|
||||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
LINK32=link.exe
|
|
||||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
|
|
||||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Ws2_32.lib hid.lib setupapi.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# Begin Target
|
|
||||||
|
|
||||||
# Name "wiiuse - Win32 Release"
|
|
||||||
# Name "wiiuse - Win32 Debug"
|
|
||||||
# Begin Group "Source Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\classic.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\dynamics.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\events.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\guitar_hero_3.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\io.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\io_nix.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\io_win.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\ir.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\nunchuk.c
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\wiiuse.c
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# Begin Group "Header Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\classic.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\definitions.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\dynamics.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\events.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\guitar_hero_3.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\io.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\ir.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\nunchuk.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\os.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\wiiuse.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\wiiuse_internal.h
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# Begin Group "Resource Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\CHANGELOG
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# End Target
|
|
||||||
# End Project
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
|
||||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Project: "wiiuse"=".\wiiuse.dsp" - Package Owner=<4>
|
|
||||||
|
|
||||||
Package=<5>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
Package=<4>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Global:
|
|
||||||
|
|
||||||
Package=<5>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
Package=<3>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Binary file not shown.
86
wiiuse.cbp
86
wiiuse.cbp
@@ -1,86 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
|
||||||
<CodeBlocks_project_file>
|
|
||||||
<FileVersion major="1" minor="6" />
|
|
||||||
<Project>
|
|
||||||
<Option title="wiiuse" />
|
|
||||||
<Option makefile_is_custom="1" />
|
|
||||||
<Option pch_mode="2" />
|
|
||||||
<Option compiler="gcc" />
|
|
||||||
<MakeCommands>
|
|
||||||
<Build command="$make $target" />
|
|
||||||
<CompileFile command="$make $file" />
|
|
||||||
<Clean command="$make clean" />
|
|
||||||
<DistClean command="$make distclean" />
|
|
||||||
</MakeCommands>
|
|
||||||
<Build>
|
|
||||||
<Target title="Release">
|
|
||||||
<Option output="bin/Release/wiiuse" prefix_auto="1" extension_auto="1" />
|
|
||||||
<Option object_output="obj/Release/" />
|
|
||||||
<Option type="1" />
|
|
||||||
<Option compiler="gcc" />
|
|
||||||
<Compiler>
|
|
||||||
<Add option="-O2" />
|
|
||||||
</Compiler>
|
|
||||||
<Linker>
|
|
||||||
<Add option="-s" />
|
|
||||||
</Linker>
|
|
||||||
</Target>
|
|
||||||
</Build>
|
|
||||||
<Compiler>
|
|
||||||
<Add option="-Wall" />
|
|
||||||
</Compiler>
|
|
||||||
<Unit filename="CHANGELOG" />
|
|
||||||
<Unit filename="README" />
|
|
||||||
<Unit filename="example-sdl/sdl.c">
|
|
||||||
<Option compilerVar="CC" />
|
|
||||||
</Unit>
|
|
||||||
<Unit filename="example/example.c">
|
|
||||||
<Option compilerVar="CC" />
|
|
||||||
</Unit>
|
|
||||||
<Unit filename="src/classic.c">
|
|
||||||
<Option compilerVar="CC" />
|
|
||||||
</Unit>
|
|
||||||
<Unit filename="src/classic.h" />
|
|
||||||
<Unit filename="src/definitions.h" />
|
|
||||||
<Unit filename="src/dynamics.c">
|
|
||||||
<Option compilerVar="CC" />
|
|
||||||
</Unit>
|
|
||||||
<Unit filename="src/dynamics.h" />
|
|
||||||
<Unit filename="src/events.c">
|
|
||||||
<Option compilerVar="CC" />
|
|
||||||
</Unit>
|
|
||||||
<Unit filename="src/events.h" />
|
|
||||||
<Unit filename="src/guitar_hero_3.c">
|
|
||||||
<Option compilerVar="CC" />
|
|
||||||
</Unit>
|
|
||||||
<Unit filename="src/guitar_hero_3.h" />
|
|
||||||
<Unit filename="src/io.c">
|
|
||||||
<Option compilerVar="CC" />
|
|
||||||
</Unit>
|
|
||||||
<Unit filename="src/io.h" />
|
|
||||||
<Unit filename="src/io_nix.c">
|
|
||||||
<Option compilerVar="CC" />
|
|
||||||
</Unit>
|
|
||||||
<Unit filename="src/io_win.c">
|
|
||||||
<Option compilerVar="CC" />
|
|
||||||
</Unit>
|
|
||||||
<Unit filename="src/ir.c">
|
|
||||||
<Option compilerVar="CC" />
|
|
||||||
</Unit>
|
|
||||||
<Unit filename="src/ir.h" />
|
|
||||||
<Unit filename="src/nunchuk.c">
|
|
||||||
<Option compilerVar="CC" />
|
|
||||||
</Unit>
|
|
||||||
<Unit filename="src/nunchuk.h" />
|
|
||||||
<Unit filename="src/os.h" />
|
|
||||||
<Unit filename="src/wiiuse.c">
|
|
||||||
<Option compilerVar="CC" />
|
|
||||||
</Unit>
|
|
||||||
<Unit filename="src/wiiuse.h" />
|
|
||||||
<Unit filename="src/wiiuse_internal.h" />
|
|
||||||
<Extensions>
|
|
||||||
<code_completion />
|
|
||||||
<debugger />
|
|
||||||
</Extensions>
|
|
||||||
</Project>
|
|
||||||
</CodeBlocks_project_file>
|
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
|
||||||
<CodeBlocks_layout_file>
|
|
||||||
<ActiveTarget name="Release" />
|
|
||||||
<File name="CHANGELOG" open="1" top="0" tabpos="7">
|
|
||||||
<Cursor position="0" topLine="0" />
|
|
||||||
</File>
|
|
||||||
<File name="README" open="0" top="0" tabpos="8">
|
|
||||||
<Cursor position="3582" topLine="0" />
|
|
||||||
</File>
|
|
||||||
<File name="example-sdl/sdl.c" open="1" top="0" tabpos="6">
|
|
||||||
<Cursor position="3235" topLine="105" />
|
|
||||||
</File>
|
|
||||||
<File name="example/example.c" open="1" top="0" tabpos="5">
|
|
||||||
<Cursor position="0" topLine="0" />
|
|
||||||
</File>
|
|
||||||
<File name="src/classic.c" open="0" top="0" tabpos="4">
|
|
||||||
<Cursor position="2464" topLine="53" />
|
|
||||||
</File>
|
|
||||||
<File name="src/definitions.h" open="1" top="0" tabpos="9">
|
|
||||||
<Cursor position="1099" topLine="12" />
|
|
||||||
</File>
|
|
||||||
<File name="src/dynamics.c" open="0" top="0" tabpos="10">
|
|
||||||
<Cursor position="3216" topLine="59" />
|
|
||||||
</File>
|
|
||||||
<File name="src/events.c" open="1" top="0" tabpos="4">
|
|
||||||
<Cursor position="2983" topLine="117" />
|
|
||||||
</File>
|
|
||||||
<File name="src/guitar_hero_3.c" open="0" top="0" tabpos="0">
|
|
||||||
<Cursor position="2604" topLine="45" />
|
|
||||||
</File>
|
|
||||||
<File name="src/io.c" open="0" top="0" tabpos="6">
|
|
||||||
<Cursor position="1817" topLine="60" />
|
|
||||||
</File>
|
|
||||||
<File name="src/io_nix.c" open="0" top="0" tabpos="8">
|
|
||||||
<Cursor position="6286" topLine="211" />
|
|
||||||
</File>
|
|
||||||
<File name="src/io_win.c" open="0" top="0" tabpos="9">
|
|
||||||
<Cursor position="4021" topLine="123" />
|
|
||||||
</File>
|
|
||||||
<File name="src/ir.c" open="1" top="0" tabpos="8">
|
|
||||||
<Cursor position="0" topLine="0" />
|
|
||||||
</File>
|
|
||||||
<File name="src/ir.h" open="0" top="0" tabpos="0">
|
|
||||||
<Cursor position="1059" topLine="0" />
|
|
||||||
</File>
|
|
||||||
<File name="src/nunchuk.c" open="0" top="0" tabpos="10">
|
|
||||||
<Cursor position="2454" topLine="43" />
|
|
||||||
</File>
|
|
||||||
<File name="src/nunchuk.h" open="0" top="0" tabpos="0">
|
|
||||||
<Cursor position="1171" topLine="0" />
|
|
||||||
</File>
|
|
||||||
<File name="src/wiiuse.c" open="1" top="0" tabpos="1">
|
|
||||||
<Cursor position="0" topLine="0" />
|
|
||||||
</File>
|
|
||||||
<File name="src/wiiuse.h" open="1" top="1" tabpos="2">
|
|
||||||
<Cursor position="0" topLine="0" />
|
|
||||||
</File>
|
|
||||||
<File name="src/wiiuse_internal.h" open="1" top="0" tabpos="3">
|
|
||||||
<Cursor position="3424" topLine="81" />
|
|
||||||
</File>
|
|
||||||
</CodeBlocks_layout_file>
|
|
||||||
Reference in New Issue
Block a user