summaryrefslogtreecommitdiffstats
path: root/src/common/CMakeLists.txt (follow)
Commit message (Collapse)AuthorAgeFilesLines
* common: Remove chunk_file.h and linear_disk_cache.hLioncash2018-04-261-2/+0
| | | | These are unused (and given chunk_file references Dolphin's >SVN< I doubt they were going to be used).
* common: Remove code_block.hLioncash2018-04-201-1/+0
| | | | | We use dynarmic, so this is unued. Anything else we need will likely use Xbyak, so this header isn't necessary any more.
* common: Port cityhash code from Citra.bunnei2018-04-141-1/+2
|
* Merge pull request #262 from daniellimws/fmtlib-macrosbunnei2018-04-031-1/+1
|\ | | | | Logging: Add fmtlib-based macros
| * Logging: Create logging macros based on fmtlibDaniel Lim Wee Soong2018-03-221-1/+1
| | | | | | | | | | | | | | | | | | Add a new set of logging macros based on fmtlib Similar but not exactly the same as https://github.com/citra-emu/citra/pull/3533 Citra currently uses a different version of fmt, which does not support FMT_VARIADIC so make_args is used instead. On the other hand, yuzu uses fmt 4.1.0 which doesn't have make_args yet so FMT_VARIADIC is used.
* | CMake: Set EMU_ARCH_BITS in CMakeLists.txtN00byKing2018-03-211-1/+0
|/
* Fix spelling error in CMakeListsMatthew Brener2018-01-211-1/+1
| | | Minor spelling error of its --> it's
* CMakeLists: Derive the source directory grouping from targets themselvesLioncash2018-01-181-63/+57
| | | | | Removes the need to store to separate SRC and HEADER variables, and then construct the target in most cases.
* Minor cleanupMerryMage2018-01-141-1/+1
|
* CoreTiming: Reworked CoreTiming (cherry-picked from Citra #3119)B3n302018-01-091-0/+1
| | | | * CoreTiming: New CoreTiming; Add Test for CoreTiming
* CMake: Create INTERFACE targets for microprofile and nihstroYuri Kunde Schlesner2017-05-281-1/+1
|
* CMake: Use IMPORTED target for BoostYuri Kunde Schlesner2017-05-281-0/+1
|
* CMake: Correct inter-module dependencies and library visibilityYuri Kunde Schlesner2017-05-281-1/+1
| | | | | | | | | | Modules didn't correctly define their dependencies before, which relied on the frontends implicitly including every module for linking to succeed. Also changed every target_link_libraries call to specify visibility of dependencies to avoid leaking definitions to dependents when not necessary.
* Move framebuffer_layout from Common to CoreYuri Kunde Schlesner2017-05-281-2/+0
| | | | | | This removes a dependency inversion between core and common. It's also the proper place for the file since it makes screen layout decisions specific to the 3DS.
* common: Add a generic interface for logging telemetry fields.bunnei2017-05-251-0/+2
|
* Remove unused symbols codeYuri Kunde Schlesner2017-05-081-2/+0
|
* Common: add ParamPackagewwylele2017-03-011-0/+2
|
* Merge pull request #2587 from yuriks/status-barYuri Kunde Schlesner2017-02-271-2/+0
|\ | | | | Replace built-in Profiler with indicators in status bar
| * Remove built-in (non-Microprofile) profilerYuri Kunde Schlesner2017-02-271-2/+0
| |
* | Gui: Change title bar to include build nameJames Rowe2017-02-231-0/+23
|/ | | | | Nightly builds now have "Citra Nightly" in the titlebar Bleeding edge builds now have "Citra Bleeding Edge" in the titlebar
* Common/x64: remove legacy emitter and abi (#2504)Weiyi Wang2017-01-311-4/+1
| | | These are not used any more since we moved shader JIT to xbyak.
* Common: add Quaternionwwylele2016-12-261-0/+1
|
* core: Move emu_window and key_map into coreMerryMage2016-12-231-4/+0
| | | | * Removes circular dependences (common should not depend on core)
* VideoCore: Convert x64 shader JIT to use Xbyak for assemblyYuri Kunde Schlesner2016-12-151-1/+7
|
* Support additional screen layouts.James Rowe2016-11-051-0/+2
| | | | | Allows users to choose a single screen layout or a large screen layout. Adds a configuration option to change the prominent screen.
* Common: Remove section measurement from profiler (#1731)Yuri Kunde Schlesner2016-04-291-1/+0
| | | | This has been entirely superseded by MicroProfile. The rest of the code can go when a simpler frametime/FPS meter is added to the GUI.
* Common: Remove Common::make_unique, use std::make_uniqueMerryMage2016-04-051-1/+0
|
* PICA: Align vertex attributesJannik Vogel2016-03-131-0/+1
|
* common: Get rid of debug_interface.hLioncash2015-09-111-1/+0
| | | | | | This is technically unused. Also removes TMemChecks because it relies on this. Whenever memory breakpoints are implemented for real, it should be designed to match the codebase debugging mechanisms.
* Common: Import BitSet from Dolphinaroulin2015-09-011-0/+1
|
* Integrate the MicroProfile profiling libraryYuri Kunde Schlesner2015-08-251-0/+3
| | | | | This brings goodies such as a configurable user interface and multi-threaded timeline view.
* Rename ARCHITECTURE_X64 definition to ARCHITECTURE_x86_64.bunnei2015-08-161-1/+1
|
* Common: Move cpu_detect to x64 directory.bunnei2015-08-161-2/+2
|
* x64: Refactor to remove fake interfaces and general cleanups.bunnei2015-08-161-12/+6
|
* Common: Added MurmurHash3 hash function for general-purpose use.bunnei2015-08-151-1/+3
|
* Common: Ported over boilerplate x86 JIT code from Dolphin/PPSSPP.bunnei2015-08-151-2/+12
|
* Common: Ported over Dolphin's code for x86 CPU capability detection.bunnei2015-08-151-0/+8
|
* Common: Remove thunk.hLioncash2015-07-111-1/+0
| | | | This isn't used, and there's no implementations of the member functions.
* Common: Remove unused fifo_queue.h.Emmanuel Gil Peyrot2015-06-271-1/+0
|
* Move video_core/color.h to common/color.harchshift2015-05-301-0/+1
|
* Move video_core/math.h to common/vector_math.harchshift2015-05-301-0/+1
| | | | The file only contained vector manipulation code, and such widely-useable code doesn't belong in video_core.
* Merge pull request #758 from yuriks/sync-loggingYuri Kunde Schlesner2015-05-161-1/+0
|\ | | | | Common: Remove async logging
| * Remove unused concurrent_ring_buffer.hYuri Kunde Schlesner2015-05-161-1/+0
| |
* | Common: Remove unused cruft from math_util, and remove a duplicated Rect class in common_types.Emmanuel Gil Peyrot2015-05-141-1/+0
|/
* Common: Remove mem_arena.cpp/hYuri Kunde Schlesner2015-05-081-2/+0
| | | | | | It is superfluous for Citra. (It's only really necessary if you're doing JIT. We were using it but not taking any advantage from it.) This should make 32-bit builds work again.
* Common: Remove hash.cpp/hYuri Kunde Schlesner2015-05-071-2/+0
| | | | Currently unused and the code quality is pretty questionable.
* Common: Remove common.hYuri Kunde Schlesner2015-05-071-1/+0
|
* Add profiling infrastructure and widgetYuri Kunde Schlesner2015-03-021-0/+4
|
* Remove "super lame/broken" file_search compilation unit that was leftover from Dolphinarchshift2015-02-191-2/+0
|
* Remove redundant utf8 compilation unit that was leftover from Dolphinarchshift2015-02-191-2/+0
|
* Remove useless extended_trace compilation unit that was leftover from Dolphinarchshift2015-02-191-2/+0
|
* Remove the useless msg_handler compilation unit that was left over from Dolphinarchshift2015-02-191-2/+0
|
* Asserts: break/crash program, fit to style guide; log.h->assert.harchshift2015-02-111-1/+1
| | | | | | | Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.
* Common: Add a clone of std::make_uniqueYuri Kunde Schlesner2014-12-201-0/+1
|
* Remove old logging systemYuri Kunde Schlesner2014-12-131-4/+0
|
* Add configurable per-class log filteringYuri Kunde Schlesner2014-12-131-0/+2
|
* New logging systemYuri Kunde Schlesner2014-12-131-0/+6
|
* Add SCOPE_EXIT macro to conveniently execute cleanup actionsYuri Kunde Schlesner2014-12-131-0/+1
|
* Added support for multiple input device types for KeyMap and connected Qt.Kevin Hartman2014-09-121-0/+1
|
* Initial HID PAD work, with GLFW only.Kevin Hartman2014-09-121-0/+2
|
* Removed fixed_size_queue.harchshift2014-09-091-1/+0
| | | | It's unused and doesn't look like it compiles anyway :/
* Removed common/std_xyz, instead using the std headerarchshift2014-09-071-3/+0
|
* Removed common/atomic, instead using std::atomicarchshift2014-09-031-3/+0
|
* CMake cleanupYuri Kunde Schlesner2014-09-011-7/+16
| | | | | | | | Several cleanups to the buildsystem: - Do better factoring of common libs between platforms. - Add support to building on Windows. - Remove Qt4 support. - Re-sort file lists and add missing headers.
* CMakeLists: rename HEADS, improved commentsarchshift2014-05-201-2/+2
| | | | Changes for clarity of comments, removed redundant compiler flags.
* Updated cmakelistsarchshift2014-05-171-0/+1
|
* Fixed indentsarchshift2014-05-011-1/+1
|
* IT'S ALIVE!archshift2014-04-291-1/+39
|
* fixes to scm_rev generation to make it conistent with windows buildbunnei2014-04-241-3/+3
|
* added scm rev generation on Linux/cmakebunnei2014-04-241-1/+3
|
* updated CMakeLists for missing filesShizZy2014-04-231-0/+1
|
* updated CMakeListsbunnei2014-04-101-16/+17
|
* convert tabs to spacesbunnei2014-04-021-16/+16
|
* updated CMakeLists.txt file for new common filesShizZy2013-09-051-9/+16
|
* adding initial project layoutShizZy2013-08-301-0/+11