[ ] a [ ] b
- c
- d
If user is careless, forgetting to put "- " before "[ ]", TODO list could get buggy.
Steps to reproduce bug:
- on parsed MD page of list above, tick "c" to note that "c" is done.
- Now, edit the file.
| from maya import cmds | |
| from math import * | |
| def euler(x, dt, dxdt): | |
| x_new = [0, 0, 0] | |
| # TODO: implement the Euler method here | |
| for i in range(0,3): | |
| x_new[i] = x[i] + dt*dxdt[i] |
[ ] a [ ] b
If user is careless, forgetting to put "- " before "[ ]", TODO list could get buggy.
Steps to reproduce bug:
RMB on the program buttonCompatibilityDisable display scaling on high DPI settings====
INSTALL( TARGETS [library name]
LIBRARY DESTINATION $(LIBDIR)] )In Windows, this will give error install Library Targets given no DESTINATION.
http://www.cmake.org/pipermail/cmake/2008-September/023876.html
You only install the LIBRARY but not the ARCHIVE (the static import lib automatically created when you export functions from a lib on windows). A static library is also treated as ARCHIVE by cmake on windows. So either remove LIBRARY or add a destination for ARCHIVE. Another thing which comes to my mind is that a library is treated as RUNTIME - but I'm unsure atm :)
So best is - remove 'LIBRARY' and you'll be fine.
| using UnityEngine; | |
| using System; | |
| using System.Collections; | |
| public class GUIManager : MonoBehaviour { | |
| public GUIText boostsText, | |
| distanceText, | |
| gameOverText, | |
| instructionsText, |
| # As described in http://en.wikipedia.org/wiki/L-system#Example_7:_Fractal_plant | |
| import turtle | |
| ruleInput = ['F', 'X'] | |
| ruleOutput = ["FF", "F-[[X]+X]+F[+FX]-X"] | |
| start = "X" | |
| front = 5 | |
| turn = 30 | |
| stack = [] |