Marek Habersack c5c9432ac0 [Misc] A hodgepodge of tiny changes
CMake:
  Simplify cmake target+version config generation and make it actually
  work.  With the changes it is now possible to detect and use
  `Notcurses` in the following way:

     find_package(Notcurses REQUIRED)
     ...
     target_link_libraries(myapp PRIVATE notcurses::notcurses)

  Also, added the same CMake configuration for `Notcurses++`, to be used
  in the following way:

     find_package(Notcurses REQUIRED
     find_package(Notcurses++ REQUIRED)
     ...
     target_link_libraries(myapp PRIVATE notcurses++::notcurses++)

Docs:
  `notcurses_cell(3)`: `cell_styles_{on,off} -> cell_{on,off}_styles`
  and `cell_load_simple` -> `cell_load_char`

C++ API:
  * Plane: added constructors taking `ncplane_options const&` instead of
    the multitude of individual parameters
  * Plane: drop `struct` when `ncplane_options` is used.
  * Plane: added `strdup` (`cell_strdup`)
  * Plane: added `extract` (`cell_extract`)
2020-11-28 17:46:23 -05:00
..
2020-01-22 06:47:43 -05:00
2020-01-22 06:47:43 -05:00
2020-09-29 13:09:44 -04:00
2020-11-25 20:04:14 -05:00
2020-09-27 15:32:25 -04:00
2020-02-18 12:36:16 -05:00
2020-02-27 11:48:36 -05:00
2020-01-22 06:47:43 -05:00
2020-11-25 19:19:31 -05:00
2020-11-27 19:35:22 -05:00
2020-11-28 17:46:23 -05:00
2020-08-01 00:27:20 -04:00
2020-01-22 06:47:43 -05:00
2020-10-21 00:47:21 -04:00