aboutsummaryrefslogtreecommitdiffhomepage
path: root/CMakeLists.txt
Commit message (Collapse)AuthorAge
* Enable linker optimizations in MSVC Release buildsGravatar Yuri Kunde Schlesner2015-07-28
| | | | | | Apparently /DEBUG implicitly disables linker optimizations. This explicitly re-enables them, giving a 40% reduction in binary sizes and a very slight runtime speed improvement.
* Fix permissions in pre-commit hookGravatar JSFernandes2015-07-14
|
* Implement new argument parsing using getopt and add the corresponding ↵Gravatar Greg Wicks2015-07-12
| | | | library to externals
* CMake: Fix Debug build configuration in MSVCGravatar Yuri Kunde Schlesner2015-07-09
| | | | | | | | Debug was missing compiler flags, causing MSVC to default it to building with optimizations enabled (making for a not very useful binary for actual debugging...). Additionally, the variables were re-organized to remove some redundancy, the old Release build type was removed, and RelWithDebInfo was renamed to take its place instead.
* Merge pull request #839 from Lectem/whitespacepolicyGravatar Yuri Kunde Schlesner2015-06-21
|\ | | | | Enforce the "no tab, use spaces" policy with a pre-commit hook.
| * force no-tab/trailing spaces with git hookGravatar Lectem2015-06-09
| | | | | | | | | | | | | | | | | | Remove unneeded stuff from pre-commit script The check against an empty commit was not needed (it is only a security for the 1st commit after git init). It could also possibly pose problems because of the redirection to /dev/null on some windows systems. newline at EOF & fixed indent
* | Remove every trailing whitespace from the project (but externals).Gravatar Emmanuel Gil Peyrot2015-05-29
| |
* | Update bundled GLFW to 3.1.1Gravatar Yuri Kunde Schlesner2015-05-25
|/ | | | | It may be necessary to fix the CMake paths manually for an exsting CMake cache after this change.
* Merge pull request #675 from jroweboy/windows-build-fixesGravatar Yuri Kunde Schlesner2015-05-14
|\ | | | | Windows build fixes
* | Install a .desktop file to make citra-qt launchable from DE menus.Gravatar Emmanuel Gil Peyrot2015-05-13
| |
* | Common: Remove many unnecessary cross-platform compatibility macrosGravatar Yuri Kunde Schlesner2015-05-06
| |
| * Updated the copy commands to run on post_build and use generator expressions ↵Gravatar James Rowe2015-03-26
| | | | | | | | to simplify the code as well
| * Changes to bring the previous commits in line with the comments on thepull ↵Gravatar James Rowe2015-03-26
| | | | | | | | request. Made the debug build a true debug build with no optimizxations and the RelWithDebInfo is what it says it is too. Changed the copying of the dlls to the build directories to happen at configuration time instead of build time
| * More changes to the CMakeFiles for better MSVC compatibility. Added in the ↵Gravatar James Rowe2015-03-26
| | | | | | | | RelWithDebInfo target and setup copying the Qt 5 Dlls to the output directories.
| * Small changes to the CMake file to make windows build easierGravatar James Rowe2015-03-26
|/
* Merge pull request #483 from yuriks/cmake-fixGravatar bunnei2015-02-03
|\ | | | | CMake: Inform the user when architecture auto-detection fails
| * CMake: Inform the user when architecture auto-detection failsGravatar Yuri Kunde Schlesner2015-01-19
| |
| * CMake: Fix wrong filename in messageGravatar Yuri Kunde Schlesner2015-01-13
| |
* | Fix building on MinGWGravatar darkf2015-01-11
|/
* CMake: Consistently set _DEBUG and NDEBUG in all platformsGravatar Yuri Kunde Schlesner2015-01-10
|
* Fix Windows buildGravatar bunnei2015-01-10
|
* Merge pull request #342 from uppfinnarn/masterGravatar bunnei2015-01-10
|\ | | | | Build improvements
* | Cleanup: Remove redundant /Oi flagGravatar chinhodado2015-01-09
| | | | | | `/Oi` is included in `/Ox` already
| * Looks like that might be needed on OSX after allGravatar Johannes Ekberg2015-01-09
| |
| * Use -pthread where and only where neededGravatar Johannes Ekberg2015-01-09
| | | | | | | | | | | | Passing -pthread to GCC as a flag makes it both link to libpthread, and make C standard library routines reentrant. This makes the additional explicit links unnecessary. Additionally, on OSX, this is the default behavior, and clang will print a message about it being unused if it's present there.
| * Link Cocoa, IOKit and CoreVideo on OSXGravatar Johannes Ekberg2015-01-09
| | | | | | | | | | | | These are implicitly linked by Xcode, but with this, you can also build it with any other generator, which does not have this behavior. CoreFoundation is included as a part of Cocoa (which is an umbrella framework), and Cocoa is generally recommended to link against, rather than its individual components (CoreFoundation, Foundation, libobjc, ...).
| * Generic PLATFORM_LIBRARIES varGravatar Johannes Ekberg2015-01-09
| | | | | | | | This both reduces redundancy in add_executable definitions, and makes it easier to link additional libraries. In particular, extra libraries are needed on OSX - see next commit.
* | CMake: Enable VS parallel builds for a good reduction in compile timesGravatar Yuri Kunde Schlesner2015-01-09
|/ | | | | | | | This enables the /MP compiler flag, which parallelizes builds of by distributing compilation of individual object files across workes processes, instead of being limited to per-project parallelism. Reduces the time for a full compile from 72 s to 45 s on my machine.
* CMake: Require Boost 1.57.0 (fixes Travis OS X)Gravatar Yuri Kunde Schlesner2014-12-29
|
* Merge pull request #275 from yuriks/cmake-cleanGravatar bunnei2014-12-22
|\ | | | | Clean up CMake library specification
* | CMake: Silence PNG not found errorGravatar Yuri Kunde Schlesner2014-12-21
| | | | | | | | Hopefully this will make people stop thinking it's a hard dependency.
* | CMake: Use improved optimization flags on MSVCGravatar Yuri Kunde Schlesner2014-12-21
| | | | | | | | | | | | While not having a noticeable effect on CPU-bound applications, this change gives an about 30-50% increase in performance for games using the GPU.
* | Add nihstro (a 3DS shader tools suite) as a submodule.Gravatar Tony Wasserka2014-12-20
| |
* | Remove C++14/1y requirementGravatar Yuri Kunde Schlesner2014-12-20
| |
* | Switch to C++14 to use std::make_uniqueGravatar Yuri Kunde Schlesner2014-12-16
| |
| * Clean up CMake library specificationGravatar Yuri Kunde Schlesner2014-12-15
|/ | | | The X11 libraries don't need to be specified when doing dynamic linking
* Integrate Boost into build system and perform a trivial cleanup in ↵Gravatar Tony Wasserka2014-12-07
| | | | vertex_shader.cpp.
* CMake: Place all the built files in BUILD_DIR/bin/<Configuration> when ↵Gravatar Subv2014-12-01
| | | | compiling with MSVC
* Added configuration file system.Gravatar archshift2014-10-07
| | | | Uses QSettings on citra-qt, and inih on citra-cli.
* Removed the need for X11 on OS XGravatar archshift2014-09-02
| | | | It only causes issues when someone (who doesn't need it) doesn't have it.
* CMake cleanupGravatar Yuri Kunde Schlesner2014-09-01
| | | | | | | | 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.
* Replace GLEW with a glLoadGen loader.Gravatar Yuri Kunde Schlesner2014-09-01
| | | | | | | | | This should fix the GL loading errors that occur in some drivers due to the use of deprecated functions by GLEW. Side benefits are more accurate auto-completion (deprecated function and symbols don't exist) and faster pointer loading (less entrypoints to load). In addition it removes an external library depency, simplifying the build system a bit and eliminating one set of binary libraries for Windows.
* Pica: Add support for dumping textures.Gravatar Tony Wasserka2014-08-25
|
* Add Qt5 option. Use Qt5 by default.Gravatar Sacha2014-08-19
|
* CMake CleanupGravatar Sacha2014-08-18
|
* * Remove -fpermissiveGravatar Phillip Stephens2014-05-19
|
* CMakeLists: Fixed GLEW include var name, compile flag varsGravatar archshift2014-05-19
| | | | | | After adding FindGLEW.cmake to externals, the variable call for the GLEW include path needed to be revised. Append flags on OSX, rather than overwrite them. I realized that GCC_COMPILE_FLAGS was changed to CMAKE_CXX_FLAGS mistakenly, so both were changed to a more platform-independent name.
* CMakeLists: rename HEADS, improved commentsGravatar archshift2014-05-19
| | | | Changes for clarity of comments, removed redundant compiler flags.
* Indent fixesGravatar archshift2014-05-19
|
* Indent fixesGravatar archshift2014-05-17
|