diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt index 9b84ecb05..36356afe9 100644 --- a/common/CMakeLists.txt +++ b/common/CMakeLists.txt @@ -1,22 +1,22 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.8) SET(common_sources - BasePacket.cpp + base_packet.cpp classes.cpp - Condition.cpp + condition.cpp crash.cpp - CRC16.cpp + crc16.cpp crc32.cpp database.cpp dbasync.cpp dbcore.cpp debug.cpp emu_opcodes.cpp - EmuTCPConnection.cpp - EmuTCPServer.cpp + emu_tcp_connection.cpp + emu_tcp_server.cpp eq_dictionary.cpp - EQDB.cpp - EQDBRes.cpp + eqdb.cpp + eqdb_res.cpp eqemu_exception.cpp EQEmuConfig.cpp EQEMuError.cpp @@ -47,8 +47,8 @@ SET(common_sources packet_dump.cpp packet_dump_file.cpp packet_functions.cpp - perl_EQDB.cpp - perl_EQDBRes.cpp + perl_eqdb.cpp + perl_eqdb_res.cpp ProcLauncher.cpp ptimer.cpp races.cpp diff --git a/common/BasePacket.cpp b/common/base_packet.cpp similarity index 100% rename from common/BasePacket.cpp rename to common/base_packet.cpp diff --git a/common/Condition.cpp b/common/condition.cpp similarity index 100% rename from common/Condition.cpp rename to common/condition.cpp diff --git a/common/CRC16.cpp b/common/crc16.cpp similarity index 100% rename from common/CRC16.cpp rename to common/crc16.cpp diff --git a/common/EmuTCPConnection.cpp b/common/emu_tcp_connection.cpp similarity index 100% rename from common/EmuTCPConnection.cpp rename to common/emu_tcp_connection.cpp diff --git a/common/EmuTCPServer.cpp b/common/emu_tcp_server.cpp similarity index 100% rename from common/EmuTCPServer.cpp rename to common/emu_tcp_server.cpp diff --git a/common/EQDB.cpp b/common/eqdb.cpp similarity index 100% rename from common/EQDB.cpp rename to common/eqdb.cpp diff --git a/common/EQDBRes.cpp b/common/eqdb_res.cpp similarity index 100% rename from common/EQDBRes.cpp rename to common/eqdb_res.cpp diff --git a/common/perl_EQDB.cpp b/common/perl_eqdb.cpp similarity index 100% rename from common/perl_EQDB.cpp rename to common/perl_eqdb.cpp diff --git a/common/perl_EQDBRes.cpp b/common/perl_eqdb_res.cpp similarity index 100% rename from common/perl_EQDBRes.cpp rename to common/perl_eqdb_res.cpp